From d2fe7b7910d1c6e3298c245ddf327d636e19e39f Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Mon, 25 Mar 2024 11:11:39 -0400 Subject: [PATCH 01/33] modified the header to fit the new design --- apps/docs/app/page.tsx | 3 +-- apps/docs/components/themeSwitch/themeSwitch.css | 2 +- apps/docs/components/ui/header/header.css | 9 +++++++++ apps/docs/components/ui/nav/nav.css | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index c646dec99..6528239d2 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -2,8 +2,7 @@ export default function Home() { return (
-

Welcome to Workleap's Hopper Design System.

-

The documentation is currently in beta.

+ Home Alone
); diff --git a/apps/docs/components/themeSwitch/themeSwitch.css b/apps/docs/components/themeSwitch/themeSwitch.css index 82e247791..60b3b9abf 100644 --- a/apps/docs/components/themeSwitch/themeSwitch.css +++ b/apps/docs/components/themeSwitch/themeSwitch.css @@ -10,7 +10,7 @@ font-size: 1rem; } -@media screen and (width >= 48rem) { +@media screen and (width >= 37.5rem) { .hd-theme-switch__button { width: var(--hd-space-4); aspect-ratio: 1/1; diff --git a/apps/docs/components/ui/header/header.css b/apps/docs/components/ui/header/header.css index 62826ced6..d84ffdc50 100644 --- a/apps/docs/components/ui/header/header.css +++ b/apps/docs/components/ui/header/header.css @@ -17,9 +17,18 @@ background-color: var(--hd-header-background-color); backdrop-filter: blur(1rem); border-block-end: var(--hd-border-size) solid var(--hd-header-border-color); + border-radius: 0 0 0.5rem 0.5rem; z-index: 1; } +@media screen and (width >= 37.5rem) { + .hd-header { + border-radius: 0.5rem; + margin: 1.5rem auto 0; + width: min(100% - 3rem, 75rem); + } +} + @media screen and (width >= 48rem) { .hd-header { position: sticky; diff --git a/apps/docs/components/ui/nav/nav.css b/apps/docs/components/ui/nav/nav.css index eb26c3e25..f93652df7 100644 --- a/apps/docs/components/ui/nav/nav.css +++ b/apps/docs/components/ui/nav/nav.css @@ -6,9 +6,9 @@ } .hd-nav { + display: none; font-size: var(--hd-nav-font-size); line-height: var(--hd-nav-line-height); - display: none; } @media screen and (width >= 37.5rem) { From e4ba17118d8e3e0859f74bfb9408769a1f5cfdcb Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Tue, 26 Mar 2024 09:05:38 -0400 Subject: [PATCH 02/33] wip --- apps/docs/app/globals.css | 8 ---- apps/docs/app/page.tsx | 84 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 82 insertions(+), 10 deletions(-) diff --git a/apps/docs/app/globals.css b/apps/docs/app/globals.css index 7e750a639..47c2c4f54 100644 --- a/apps/docs/app/globals.css +++ b/apps/docs/app/globals.css @@ -58,14 +58,6 @@ a { display: flex; } -.hd-home { - display: flex; - flex-direction: column; - gap: 3rem; - min-height: 40vh; - justify-content: center; -} - .hd-display { font-size: var(--hd-step-5); font-weight: 500; diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 6528239d2..b28782354 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -1,8 +1,88 @@ +import "./home/home.css"; +import AccessibleIcon from "./home/assets/accessible.svg"; +import InternationalIcon from "./home/assets/international.svg"; +import TypescriptIcon from "./home/assets/typescript.svg"; +import DarkModeIcon from "./home/assets/dark-mode.svg"; + export default function Home() { return ( -
+
- Home Alone +
+

Fusce semper facilisis finibus.

+

Sed condimentum, arcu sit amet tempus posuere, sapien ex vulputate risus, placerat convallis lectus ex.

+
+
+ + +
+
+
+

Accessible

+

+ Built with accessibility in mind Hopper is based on React Aria Components +

+
+
+

International

+

+ Experience is pushed further with internationalization. +

+
+
+

Typescript

+

+ Typescript based for reduced learning curve and error detection. +

+
+
+

Dark mode

+

+ Switching from light to dark mode couldn't be easier. +

+
+
+
+
+
+
+
+

Colors

+
+
+ + + + +
+
+ + + + +
+
+
+
+

Sizes

+
+
+
+
+

Text Styles

+
+
+
+
+

Icons

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit

+
+
+
+

Components

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit

+
+
); From 16e4528318ee0021427664e0209937e453e8790d Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Thu, 28 Mar 2024 14:46:29 -0400 Subject: [PATCH 03/33] added components on the homepage --- apps/docs/app/page.tsx | 116 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 104 insertions(+), 12 deletions(-) diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index b28782354..a159f3cba 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -1,8 +1,19 @@ -import "./home/home.css"; +"use client"; + +import { HopperProvider } from "@hopper-ui/components"; import AccessibleIcon from "./home/assets/accessible.svg"; import InternationalIcon from "./home/assets/international.svg"; import TypescriptIcon from "./home/assets/typescript.svg"; import DarkModeIcon from "./home/assets/dark-mode.svg"; +import FontSizeIcon from "./home/assets/font-size.svg"; +import LineHeightIcon from "./home/assets/line-height.svg"; +import MarginIcon from "./home/assets/margin.svg"; +import SelectArrowIcon from "./home/assets/select-arrow.svg"; + +import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, ProfileIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, ThumbsUpIcon, WarningIcon } from "@hopper-ui/icons"; + +import "./home/home.css"; +import "@hopper-ui/tokens/fonts.css"; export default function Home() { return ( @@ -51,36 +62,117 @@ export default function Home() {
- - - + + +
- - - - + + + +
-
+

Sizes

+
+
+ 16 +
+
+
+ 24 +
+
+
+ 32 +
+
+
+ 40 +
+
+
-
+

Text Styles

+
+
+ Aa +
+
+
+ Regular + +
+
+ + 84 +
+
+ + 96 +
+
+ + 0 +
+
+
-
+

Icons

Lorem ipsum dolor sit amet, consectetur adipiscing elit

+ +
+
+ + + + + + + + + +
+
+ + + + + + + + + +
+
+
-
+

Components

Lorem ipsum dolor sit amet, consectetur adipiscing elit

+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 11a3c982505adefc859b9e58bfc66a6572d7e644 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Thu, 28 Mar 2024 14:47:55 -0400 Subject: [PATCH 04/33] svg files for home and CSS --- apps/docs/app/home/assets/accessible.svg | 4 + apps/docs/app/home/assets/dark-mode.svg | 1 + apps/docs/app/home/assets/external-link.svg | 1 + apps/docs/app/home/assets/font-size.svg | 1 + apps/docs/app/home/assets/international.svg | 1 + apps/docs/app/home/assets/line-height.svg | 1 + apps/docs/app/home/assets/margin.svg | 1 + apps/docs/app/home/assets/select-arrow.svg | 1 + apps/docs/app/home/assets/typescript.svg | 1 + apps/docs/app/home/home.css | 372 ++++++++++++++++++++ 10 files changed, 384 insertions(+) create mode 100644 apps/docs/app/home/assets/accessible.svg create mode 100644 apps/docs/app/home/assets/dark-mode.svg create mode 100644 apps/docs/app/home/assets/external-link.svg create mode 100644 apps/docs/app/home/assets/font-size.svg create mode 100644 apps/docs/app/home/assets/international.svg create mode 100644 apps/docs/app/home/assets/line-height.svg create mode 100644 apps/docs/app/home/assets/margin.svg create mode 100644 apps/docs/app/home/assets/select-arrow.svg create mode 100644 apps/docs/app/home/assets/typescript.svg create mode 100644 apps/docs/app/home/home.css diff --git a/apps/docs/app/home/assets/accessible.svg b/apps/docs/app/home/assets/accessible.svg new file mode 100644 index 000000000..dfeef8cf4 --- /dev/null +++ b/apps/docs/app/home/assets/accessible.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/docs/app/home/assets/dark-mode.svg b/apps/docs/app/home/assets/dark-mode.svg new file mode 100644 index 000000000..2eca64c38 --- /dev/null +++ b/apps/docs/app/home/assets/dark-mode.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/external-link.svg b/apps/docs/app/home/assets/external-link.svg new file mode 100644 index 000000000..a5de228d9 --- /dev/null +++ b/apps/docs/app/home/assets/external-link.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/font-size.svg b/apps/docs/app/home/assets/font-size.svg new file mode 100644 index 000000000..c90ece4a9 --- /dev/null +++ b/apps/docs/app/home/assets/font-size.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/international.svg b/apps/docs/app/home/assets/international.svg new file mode 100644 index 000000000..364959b75 --- /dev/null +++ b/apps/docs/app/home/assets/international.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/line-height.svg b/apps/docs/app/home/assets/line-height.svg new file mode 100644 index 000000000..76ce86cd7 --- /dev/null +++ b/apps/docs/app/home/assets/line-height.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/margin.svg b/apps/docs/app/home/assets/margin.svg new file mode 100644 index 000000000..1a9f98949 --- /dev/null +++ b/apps/docs/app/home/assets/margin.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/select-arrow.svg b/apps/docs/app/home/assets/select-arrow.svg new file mode 100644 index 000000000..736cf9ead --- /dev/null +++ b/apps/docs/app/home/assets/select-arrow.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/assets/typescript.svg b/apps/docs/app/home/assets/typescript.svg new file mode 100644 index 000000000..a1c9844d7 --- /dev/null +++ b/apps/docs/app/home/assets/typescript.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css new file mode 100644 index 000000000..57da13bc6 --- /dev/null +++ b/apps/docs/app/home/home.css @@ -0,0 +1,372 @@ +.hd-home__heading { + text-align: center; + margin: 0 auto; + max-width: 43rem; +} + +.hd-home__header { + font-size: 2.25rem; + line-height: 1.3333; +} + +.hd-home__copy { + color: var(--hd-color-neutral-text-weak); + font-size: 1rem; + line-height: 1.5; + margin-top: var(--hd-space-1); +} + +.hd-home__ctas { + display: flex; + gap: var(--hd-space-2); + justify-content: center; + margin-top: var(--hd-space-4); +} + +.hd-home__features { + display: flex; + flex-wrap: wrap; + gap: var(--hd-space-4); + margin-top: var(--hd-space-10); +} + +.hd-home__feature-item { + flex: 1; +} + +.hd-home__feature-title { + align-items: center; + display: flex; + font-size: 1.125rem; + gap: var(--hd-space-1); + line-height: 1.3333; +} + +.hd-home-feature-title__icon path { + height: var(--hd-space-3); + aspect-ratio: 1/1; + stroke: var(--hd-color-neutral-icon); +} + +.hd-icon-fill { + fill: var(--hd-color-neutral-icon); + stroke: transparent; +} + +.hd-icon-fill path { + stroke: transparent; +} + +.hd-home__feature-copy { + color: var(--neutral-text-weak); + font-size: 0.875rem; + line-height: 1.4285; + margin-top: var(--hd-space-1); +} + +/* Samples Section */ +.hd-home-samples { + display: grid; + gap: var(--hd-space-3); + grid-template-columns: 1fr 1fr; + margin-top: var(--hd-space-10); +} + +.hd-home-sample__item { + border: var(--hd-border-size) solid var(--hd-color-neutral-border); + border-radius: var(--hd-space-2); + padding: var(--hd-space-3); +} + +.hd-home-sample__title { + color: var(--hd-neutral-text); + font-size: 1.25rem; + line-height: 1.2; +} + +.hd-home-sample__copy { + color: var(--hd-color-neutral-text-weak); + font-size: 1rem; + line-height: 1.5; + margin-top: var(--hd-space-05); +} + +.hd-home-samples__row { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 1.5rem; +} + +.hd-home-samples__col { + display: grid; + gap: 1.5rem; +} + +/* colors sample */ +.hd-home-sample__colors { + display: flex; + gap: var(--hd-space-1); + flex-wrap: wrap; +} + +.hd-home-sample__colors-row { + display: flex; + gap: var(--hd-space-1); +} + +.hd-home-sample__color { + border-radius: var(--hd-space-1); + display: flex; + height: 1.875rem; + width: 1.875rem; +} + +.hd-home-sample__item-colors { + display: flex; + gap: var(--hd-space-4); +} + +/* Rock Color */ +.hd-home-sample__color-rock-200 { + background-color: #B3B3B1; +} + +.hd-home-sample__color-rock-300 { + background-color: #959593; +} + +.hd-home-sample__color-rock-400 { + background-color: #777775; +} + +.hd-home-sample__color-rock-500 { + background-color: #6C6C6B; +} + +/* Sapphire Color */ +.hd-home-sample__color-sapphire-200 { + background-color: #95B1FF; +} + +.hd-home-sample__color-sapphire-300 { + background-color: #6C8FFD; +} + +.hd-home-sample__color-sapphire-400 { + background-color: #4767FE; +} + +.hd-home-sample__color-sapphire-500 { + background-color: #3B57FF; +} + +/* Sizes */ +.hd-home-sample__item-sizes { + display: flex; + gap: var(--hd-space-1); + flex-wrap: wrap; +} + +.hd-home-sample__sizes { + display: flex; + gap: var(--hd-space-1); + margin-left: auto; +} + +.hd-home-sample__size { + display: flex; + flex-direction: column; + gap: var(--hd-space-05); +} + +.hd-home-sample__size-text { + color: var(--hd-color-accent-text); + font-size: 0.625rem; + text-align: right; +} + +.hd-home-sample__size-bar { + background-color: var(--hd-color-accent-surface); + height: 3.5rem; +} + +.hd-home-sample__size-16 .hd-home-sample__size-bar { + width: 1rem; +} + +.hd-home-sample__size-24 .hd-home-sample__size-bar { + width: 1.5rem; +} + +.hd-home-sample__size-32 .hd-home-sample__size-bar { + width: 2rem; +} + +.hd-home-sample__size-40 .hd-home-sample__size-bar { + width: 2.5rem; +} + +/* Icons */ +.hd-home-sample__icons { + display: flex; + gap: var(--hd-space-2); + flex-direction: column; +} + +.hd-home-sample__icons-row { + display: flex; + justify-content: space-between; +} + +.hd-home-samples .hd-home-sample__icons-icon { + color: #959593; +} + +.hd-home-samples .hd-home-sample__icons-icon--active { + color: #155AF9; +} + +.hd-home-samples .hd-home-sample__icons-icon--strong { + color: #3C3C3C; +} + +/* Text Styles */ +.hd-home-sample__item-text-styles { + display: flex; + flex-direction: column; +} + +.hd-home-sample__text-styles { + border-bottom: 0; + border-image: linear-gradient(90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-top: 0; + border-style: solid; + border-right: 0; + border-top-width: var(--hd-border-size); + display: flex; + flex-grow: 1; + gap: var(--hd-space-3); + margin-top: var(--hd-space-3); +} + +.hd-home-sample__text { + font-family: Inter, sans-serif; + font-size: 5.25rem; + font-weight: 700; +} + +.hd-home-sample__text-lowercase { + color: transparent; + -webkit-text-stroke: 0.125rem var(--hd-color-neutral-text); +} + +.hd-home-sample__text-styles-col { + display: flex; + align-items: center; +} + +.hd-home-sample__text-styles-controls { + align-items: start; + background-image: linear-gradient(180deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 75%, rgba(0 212 255 / 0%) 100%); + border-bottom: 0; + border-image: linear-gradient(0deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-top: 0; + border-left-width: var(--hd-border-size); + flex-direction: column; + flex-grow: 1; + gap: 0.75rem; + padding: var(--hd-space-2); +} + +.hd-home-sample__control-knob { + align-items: center; + display: flex; + gap: 0.75rem; +} + +.hd-home-sample__control-knob-title { + align-items: center; + display: flex; + gap: 0.25rem; +} + +.hd-home-sample__control-knob-value { + color: var(--hd-color-neutral-text); + font-family: Arial, Helvetica, sans-serif; + font-size: 0.75rem; + line-height: 1; +} + +/* Text Styles - Control Text */ +.hd-home-sample__control-title { + font-family: Inter, sans-serif; + font-size: 0.75rem; + font-weight: 500; + line-height: 1.3333; +} + +/* Components */ +.hd-home-sample__item-components { + display: grid; + grid-template-rows: min-content min-content 1fr; +} + +.hd-home-sample-components { + display: grid; + grid-template-columns: 1fr 1fr; +} + +.hd-home-sample-components__item:nth-child(odd) { + background: linear-gradient(-90deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 60%, rgba(0 212 255 / 0%) 100%); + border-bottom: 0; + border-image: linear-gradient(90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-left: 0; + border-top-width: var(--hd-border-size); +} + +.hd-home-sample-components__item:nth-child(even) { + background: linear-gradient(90deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 60%, rgba(0 212 255 / 0%) 100%); + border-bottom: 0; + border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-left: 0; + border-top-width: var(--hd-border-size); +} + +.hd-home-sample-components__item { + align-items: center; + background-color: #FFFFFF; + display: flex;; + justify-content: center; + padding: 1rem; +} + +/* Components - Fake */ +.hd-home-sample-components__fake-avatar { + background-color: olive; + width: 137px; + height: 32px; +} + +.hd-home-sample-components__fake-select { + border: 1px solid olive; + width: 100%; + height: 40px; +} + +.hd-home-sample-components__fake-buttons { + background-color: #155AF9; + width: 225px; + height: 40px; +} + +.hd-home-sample-components__fake-radios { + border: 1px solid olive; + height: 48px; + width: 99px; +} From df005e9feaf045cb29928f8f39964917eb6e5685 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Tue, 2 Apr 2024 11:29:35 -0400 Subject: [PATCH 05/33] usage of official doc buttons --- apps/docs/app/home/home.css | 53 ++++++++++++++++++++++++++----------- apps/docs/app/page.tsx | 22 +++++++++++---- apps/docs/app/tokens.css | 2 +- 3 files changed, 55 insertions(+), 22 deletions(-) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index 57da13bc6..5b2d993ec 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -18,7 +18,7 @@ .hd-home__ctas { display: flex; - gap: var(--hd-space-2); + gap: var(--hd-space-3); justify-content: center; margin-top: var(--hd-space-4); } @@ -73,9 +73,19 @@ } .hd-home-sample__item { + --background: var(--hd-white); + --color: var(--hd-neutral-50); + border: var(--hd-border-size) solid var(--hd-color-neutral-border); border-radius: var(--hd-space-2); padding: var(--hd-space-3); + background: linear-gradient(90deg, var(--background) 0.625rem, transparent 1%) 50%, linear-gradient(var(--background) 0.625rem, transparent 1%) 50%, var(--color); + background-size: 0.75rem 0.75rem; +} + +[data-theme="dark"] .hd-home-sample__item { + --background: var(--hd-neutral-900); + --color: var(--hd-neutral-800); } .hd-home-sample__title { @@ -89,6 +99,7 @@ font-size: 1rem; line-height: 1.5; margin-top: var(--hd-space-05); + margin-bottom: var(--hd-space-3); } .hd-home-samples__row { @@ -266,10 +277,12 @@ } .hd-home-sample__text-styles-controls { + --background: var(--hd-white); + align-items: start; - background-image: linear-gradient(180deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 75%, rgba(0 212 255 / 0%) 100%); + background-image: linear-gradient(180deg, var(--background) 0%, var(--background) 75%, rgba(255 255 255 / 0%) 100%); border-bottom: 0; - border-image: linear-gradient(0deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-image: linear-gradient(0deg, rgba(0 0 0 / 0%), rgb(186 188 192)) 1; border-style: solid; border-right: 0; border-top: 0; @@ -280,6 +293,10 @@ padding: var(--hd-space-2); } +[data-theme="dark"] .hd-home-sample__text-styles-controls { + --background: var(--hd-neutral-900); +} + .hd-home-sample__control-knob { align-items: center; display: flex; @@ -318,8 +335,17 @@ grid-template-columns: 1fr 1fr; } +.hd-home-sample-components__item { + --background: rgba(255 255 255 / 70%); + + align-items: center; + display: flex;; + justify-content: center; + padding: 1rem; +} + .hd-home-sample-components__item:nth-child(odd) { - background: linear-gradient(-90deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 60%, rgba(0 212 255 / 0%) 100%); + background: linear-gradient(-90deg, var(--background) 0%, var(--background) 85%, rgba(0 212 255 / 0%) 100%); border-bottom: 0; border-image: linear-gradient(90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; border-style: solid; @@ -329,21 +355,17 @@ } .hd-home-sample-components__item:nth-child(even) { - background: linear-gradient(90deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 60%, rgba(0 212 255 / 0%) 100%); + background: linear-gradient(90deg, var(--background) 0%, var(--background) 85%, rgba(255 255 255 / 0%) 100%); border-bottom: 0; - border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%), rgb(186 188 192)) 1; border-style: solid; border-right: 0; border-left: 0; border-top-width: var(--hd-border-size); } -.hd-home-sample-components__item { - align-items: center; - background-color: #FFFFFF; - display: flex;; - justify-content: center; - padding: 1rem; +[data-theme="dark"] .hd-home-sample-components__item { + --background: rgba(41 41 41 / 70%); } /* Components - Fake */ @@ -359,10 +381,9 @@ height: 40px; } -.hd-home-sample-components__fake-buttons { - background-color: #155AF9; - width: 225px; - height: 40px; +.hd-home-sample-components__buttons { + display: flex; + gap: var(--hd-space-2); } .hd-home-sample-components__fake-radios { diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index a159f3cba..e08ebdc55 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { HopperProvider } from "@hopper-ui/components"; +import { Button as HopperButton, HopperProvider } from "@hopper-ui/components"; import AccessibleIcon from "./home/assets/accessible.svg"; import InternationalIcon from "./home/assets/international.svg"; import TypescriptIcon from "./home/assets/typescript.svg"; @@ -9,13 +9,20 @@ import FontSizeIcon from "./home/assets/font-size.svg"; import LineHeightIcon from "./home/assets/line-height.svg"; import MarginIcon from "./home/assets/margin.svg"; import SelectArrowIcon from "./home/assets/select-arrow.svg"; +import { ThemeContext } from "@/context/theme/ThemeProvider.tsx"; +import { useContext } from "react"; +import Button from "../components/button/Button"; import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, ProfileIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, ThumbsUpIcon, WarningIcon } from "@hopper-ui/icons"; -import "./home/home.css"; import "@hopper-ui/tokens/fonts.css"; +import "./home/home.css"; export default function Home() { + const { colorMode } = useContext(ThemeContext); + + const theme = colorMode; + return (
@@ -24,8 +31,8 @@ export default function Home() {

Sed condimentum, arcu sit amet tempus posuere, sapien ex vulputate risus, placerat convallis lectus ex.

- - + + Github
@@ -167,7 +174,12 @@ export default function Home() {
-
+ +
+ Confirm + I need help +
+
diff --git a/apps/docs/app/tokens.css b/apps/docs/app/tokens.css index 6b7d4f2e3..415ae193a 100644 --- a/apps/docs/app/tokens.css +++ b/apps/docs/app/tokens.css @@ -89,7 +89,7 @@ [data-theme="dark"] { --hd-color-white-surface: var(--hd-neutral-800); --hd-color-neutral-surface: var(--hd-neutral-900); - --hd-color-neutral-surface-weak: var(--hd-neutral-800); + --hd-color-neutral-surface-weak: var(--hd-neutral-900); --hd-color-surface-neutral-selection: var(--hd-neutral-300); --hd-color-neutral-text: var(--hd-neutral-0); --hd-color-neutral-text-strong: var(--hd-neutral-900); From dc4c00f0dbd95a82470aad46611021fc7e075018 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Wed, 3 Apr 2024 10:23:36 -0400 Subject: [PATCH 06/33] added components section --- apps/docs/app/home/assets/arrow.svg | 1 + apps/docs/app/home/home.css | 86 ++++++++++++++++++++++++++--- apps/docs/app/page.tsx | 40 ++++++++------ 3 files changed, 101 insertions(+), 26 deletions(-) create mode 100644 apps/docs/app/home/assets/arrow.svg diff --git a/apps/docs/app/home/assets/arrow.svg b/apps/docs/app/home/assets/arrow.svg new file mode 100644 index 000000000..c3824b609 --- /dev/null +++ b/apps/docs/app/home/assets/arrow.svg @@ -0,0 +1 @@ + diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index 5b2d993ec..7d7145a79 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -76,11 +76,12 @@ --background: var(--hd-white); --color: var(--hd-neutral-50); + background: linear-gradient(90deg, var(--background) 0.625rem, transparent 1%) 50%, linear-gradient(var(--background) 0.625rem, transparent 1%) 50%, var(--color); + background-size: 0.75rem 0.75rem; border: var(--hd-border-size) solid var(--hd-color-neutral-border); border-radius: var(--hd-space-2); padding: var(--hd-space-3); - background: linear-gradient(90deg, var(--background) 0.625rem, transparent 1%) 50%, linear-gradient(var(--background) 0.625rem, transparent 1%) 50%, var(--color); - background-size: 0.75rem 0.75rem; + position: relative; } [data-theme="dark"] .hd-home-sample__item { @@ -88,12 +89,49 @@ --color: var(--hd-neutral-800); } +a.hd-home-sample__item:hover { + box-shadow: 0 0.625rem 0.625rem calc(-1 * 0.0313rem) rgba(0 0 0 / 6%), 0 0.1875rem 0.1875rem calc(-1 * 0.0938rem) rgba(0 0 0 / 6%), 0 0.375rem 0.375rem calc(-1 * 0.0938rem) rgba(0 0 0 / 6%), 0 0.75rem 0.75rem calc(-1 * 0.375rem) rgba(0 0 0 / 6%), 0 1.5rem 1.5rem calc(-1 * 0.75rem) rgba(0 0 0 / 6%); + transform: translate(-0.125rem, -0.125rem); + transition: box-shadow 0.3s ease, transform 0.2s ease-in; +} + +a.hd-home-sample__item:hover .hd-home-sample__title-icon { + opacity: 1; + transform: translateX(0); +} + +a.hd-home-sample__item:hover::after { + bottom: -0.25rem; + content: ""; + display: block; + height: 0.25rem; + left: 0; + position: absolute; + width: 100%; +} + .hd-home-sample__title { - color: var(--hd-neutral-text); + align-items: center; + align-self: flex-start; + color: var(--hd-color-neutral-text); + display: flex; font-size: 1.25rem; + gap: 0.25rem; line-height: 1.2; } +.hd-home-sample__title-wrap { + align-items: center; + display: flex; + gap: 0.5rem; +} + +.hd-home-sample__title-icon { + opacity: 0; + transform: translateX(-1rem); + transition: opacity 0.2s ease, transform 0.1s ease-in; +} + .hd-home-sample__copy { color: var(--hd-color-neutral-text-weak); font-size: 1rem; @@ -116,8 +154,10 @@ /* colors sample */ .hd-home-sample__colors { display: flex; - gap: var(--hd-space-1); + justify-content: flex-end; flex-wrap: wrap; + gap: var(--hd-space-1); + margin-block: calc(-1 * var(--hd-space-1)); } .hd-home-sample__colors-row { @@ -134,7 +174,7 @@ .hd-home-sample__item-colors { display: flex; - gap: var(--hd-space-4); + justify-content: space-between; } /* Rock Color */ @@ -172,16 +212,18 @@ } /* Sizes */ -.hd-home-sample__item-sizes { +.hd-home-sample__sizes { display: flex; gap: var(--hd-space-1); - flex-wrap: wrap; + margin-block: calc(-1 * var(--hd-space-1)); } -.hd-home-sample__sizes { +.hd-home-sample__item-sizes { display: flex; + justify-content: space-between; gap: var(--hd-space-1); - margin-left: auto; + flex-wrap: wrap; + margin-block: var(--hd-space-1); } .hd-home-sample__size { @@ -391,3 +433,29 @@ height: 48px; width: 99px; } + +/* Upcoming */ +.hd-home-sample__item-upcoming { + background-image: linear-gradient(1deg, rgba(60 60 60 / 20%) 0.94%, rgba(60 60 60 / 50%) 75.3%); + border-radius: inherit; + display: flex; + inset: 0; + opacity: 0.1; + position: absolute; + z-index: 10; +} + +[data-theme="dark"] .hd-home-sample__item-upcoming { + background: linear-gradient(1deg, rgba(80 80 80 / 20%) 0.94%, rgba(80 80 80 / 60%) 75.3%); + opacity: 0.6; +} + +/* Tag */ +.hd-tag-accent { + background-color: var(--hd-color-accent-surface); + border-radius: 0.5rem; + color: var(--hd-color-accent-text); + font-size: 0.875rem; + line-height: 1.4285; + padding-inline: var(--hd-space-05); +} diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index e08ebdc55..8a0725046 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -8,10 +8,12 @@ import DarkModeIcon from "./home/assets/dark-mode.svg"; import FontSizeIcon from "./home/assets/font-size.svg"; import LineHeightIcon from "./home/assets/line-height.svg"; import MarginIcon from "./home/assets/margin.svg"; +import ArrowIcon from "./home/assets/arrow.svg"; import SelectArrowIcon from "./home/assets/select-arrow.svg"; -import { ThemeContext } from "@/context/theme/ThemeProvider.tsx"; +import { type ColorScheme, ThemeContext } from "@/context/theme/ThemeProvider.tsx"; import { useContext } from "react"; import Button from "../components/button/Button"; +import { ExternalLinkIcon, Icon } from "@/components/icon"; import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, ProfileIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, ThumbsUpIcon, WarningIcon } from "@hopper-ui/icons"; @@ -21,7 +23,7 @@ import "./home/home.css"; export default function Home() { const { colorMode } = useContext(ThemeContext); - const theme = colorMode; + const theme = colorMode as ColorScheme; return (
@@ -31,8 +33,8 @@ export default function Home() {

Sed condimentum, arcu sit amet tempus posuere, sapien ex vulputate risus, placerat convallis lectus ex.

- - Github + +
-

Components

+
+
+

Components

+ upcoming +

Lorem ipsum dolor sit amet, consectetur adipiscing elit

From b69a0f725571fbf9995571035620c014a5a1a534 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Wed, 3 Apr 2024 13:30:08 -0400 Subject: [PATCH 07/33] component in homepage image --- apps/docs/app/home/home.css | 18 ------------------ apps/docs/app/page.tsx | 7 ++++--- 2 files changed, 4 insertions(+), 21 deletions(-) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index 7d7145a79..b5a7b2d52 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -411,29 +411,11 @@ a.hd-home-sample__item:hover::after { } /* Components - Fake */ -.hd-home-sample-components__fake-avatar { - background-color: olive; - width: 137px; - height: 32px; -} - -.hd-home-sample-components__fake-select { - border: 1px solid olive; - width: 100%; - height: 40px; -} - .hd-home-sample-components__buttons { display: flex; gap: var(--hd-space-2); } -.hd-home-sample-components__fake-radios { - border: 1px solid olive; - height: 48px; - width: 99px; -} - /* Upcoming */ .hd-home-sample__item-upcoming { background-image: linear-gradient(1deg, rgba(60 60 60 / 20%) 0.94%, rgba(60 60 60 / 50%) 75.3%); diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 8a0725046..71f87a9a0 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -1,6 +1,7 @@ "use client"; import { Button as HopperButton, HopperProvider } from "@hopper-ui/components"; +import Image from "next/image"; import AccessibleIcon from "./home/assets/accessible.svg"; import InternationalIcon from "./home/assets/international.svg"; import TypescriptIcon from "./home/assets/typescript.svg"; @@ -174,10 +175,10 @@ export default function Home() {

Lorem ipsum dolor sit amet, consectetur adipiscing elit

-
+ Avatar Group component preview
-
+ Select Fielg component preview
@@ -188,7 +189,7 @@ export default function Home() {
-
+ Radio Group Component preview
From b6e752c58329f40e80438a5e97ba2cfb4b9c24eb Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Wed, 10 Apr 2024 21:31:06 -0400 Subject: [PATCH 08/33] renamed files - added rich icon mdx --- apps/docs/app/layout.css | 4 ++++ .../{library.mdx => icons-library.mdx} | 4 ++-- .../icons/react-icons/rich-icons-library.mdx | 20 +++++++++++++++++++ .../svg/{library.mdx => icons-library.mdx} | 4 ++-- .../content/icons/svg/rich-icons-library.mdx | 19 ++++++++++++++++++ 5 files changed, 47 insertions(+), 4 deletions(-) rename apps/docs/content/icons/react-icons/{library.mdx => icons-library.mdx} (91%) create mode 100644 apps/docs/content/icons/react-icons/rich-icons-library.mdx rename apps/docs/content/icons/svg/{library.mdx => icons-library.mdx} (91%) create mode 100644 apps/docs/content/icons/svg/rich-icons-library.mdx diff --git a/apps/docs/app/layout.css b/apps/docs/app/layout.css index a06c6ad9f..fdf270501 100644 --- a/apps/docs/app/layout.css +++ b/apps/docs/app/layout.css @@ -51,6 +51,10 @@ p { line-height: 1.5; } +.hd-content ul { + list-style-position: inside; +} + .hd-content p:not(:last-child) { margin-block-end: 1.25rem; } diff --git a/apps/docs/content/icons/react-icons/library.mdx b/apps/docs/content/icons/react-icons/icons-library.mdx similarity index 91% rename from apps/docs/content/icons/react-icons/library.mdx rename to apps/docs/content/icons/react-icons/icons-library.mdx index 5b6360801..76bafb1b9 100644 --- a/apps/docs/content/icons/react-icons/library.mdx +++ b/apps/docs/content/icons/react-icons/icons-library.mdx @@ -1,5 +1,5 @@ --- -title: Library +title: Icons Library description: Getting started with Workleap Design Icons order: 3 --- @@ -9,7 +9,7 @@ export const usageMethods = [ { title: "SVG" } ]; -# Library +# Icons Library All available icons in the icon library are shown below. diff --git a/apps/docs/content/icons/react-icons/rich-icons-library.mdx b/apps/docs/content/icons/react-icons/rich-icons-library.mdx new file mode 100644 index 000000000..3b424193b --- /dev/null +++ b/apps/docs/content/icons/react-icons/rich-icons-library.mdx @@ -0,0 +1,20 @@ +--- +title: Rich Icons Library +description: Getting started with Workleap Design Icons +order: 3 +--- + +export const usageMethods = [ + { title: "React" }, + { title: "SVG" } +]; + +# Rich Icons Library + +All available icons in the icon library are shown below. + +Use the correct size for each icon. Icons should be used at their original size according to the design. + +Click or tap on any icon to copy its name. + + diff --git a/apps/docs/content/icons/svg/library.mdx b/apps/docs/content/icons/svg/icons-library.mdx similarity index 91% rename from apps/docs/content/icons/svg/library.mdx rename to apps/docs/content/icons/svg/icons-library.mdx index 673862505..23de9b845 100644 --- a/apps/docs/content/icons/svg/library.mdx +++ b/apps/docs/content/icons/svg/icons-library.mdx @@ -1,5 +1,5 @@ --- -title: Library +title: Icons Library description: Getting started with Workleap Design Icons --- @@ -8,7 +8,7 @@ export const usageMethods = [ { title: "SVG" } ]; -# Library +# Icons Library All available icons in the icon library are shown below. diff --git a/apps/docs/content/icons/svg/rich-icons-library.mdx b/apps/docs/content/icons/svg/rich-icons-library.mdx new file mode 100644 index 000000000..ff46d7d6a --- /dev/null +++ b/apps/docs/content/icons/svg/rich-icons-library.mdx @@ -0,0 +1,19 @@ +--- +title: Rich Icons Library +description: Getting started with Workleap Design Icons +--- + +export const usageMethods = [ + { title: "React" }, + { title: "SVG" } +]; + +# Rich Icons Library + +All available icons in the icon library are shown below. + +Use the correct size for each icon. Icons should be used at their original size according to the design. + +Click or tap on any icon to copy its filename. + + From f31c33b66618aee4690fd0b87530bfb707f197ef Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Thu, 11 Apr 2024 09:19:13 -0400 Subject: [PATCH 09/33] added back library files for icons --- .../{icons-library.mdx => library.mdx} | 4 ++-- .../icons/react-icons/rich-icons-library.mdx | 20 ------------------- .../svg/{icons-library.mdx => library.mdx} | 4 ++-- .../content/icons/svg/rich-icons-library.mdx | 19 ------------------ 4 files changed, 4 insertions(+), 43 deletions(-) rename apps/docs/content/icons/react-icons/{icons-library.mdx => library.mdx} (91%) delete mode 100644 apps/docs/content/icons/react-icons/rich-icons-library.mdx rename apps/docs/content/icons/svg/{icons-library.mdx => library.mdx} (91%) delete mode 100644 apps/docs/content/icons/svg/rich-icons-library.mdx diff --git a/apps/docs/content/icons/react-icons/icons-library.mdx b/apps/docs/content/icons/react-icons/library.mdx similarity index 91% rename from apps/docs/content/icons/react-icons/icons-library.mdx rename to apps/docs/content/icons/react-icons/library.mdx index 76bafb1b9..6bf765cd0 100644 --- a/apps/docs/content/icons/react-icons/icons-library.mdx +++ b/apps/docs/content/icons/react-icons/library.mdx @@ -1,5 +1,5 @@ --- -title: Icons Library +title: Icons description: Getting started with Workleap Design Icons order: 3 --- @@ -9,7 +9,7 @@ export const usageMethods = [ { title: "SVG" } ]; -# Icons Library +# Icons All available icons in the icon library are shown below. diff --git a/apps/docs/content/icons/react-icons/rich-icons-library.mdx b/apps/docs/content/icons/react-icons/rich-icons-library.mdx deleted file mode 100644 index 3b424193b..000000000 --- a/apps/docs/content/icons/react-icons/rich-icons-library.mdx +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: Rich Icons Library -description: Getting started with Workleap Design Icons -order: 3 ---- - -export const usageMethods = [ - { title: "React" }, - { title: "SVG" } -]; - -# Rich Icons Library - -All available icons in the icon library are shown below. - -Use the correct size for each icon. Icons should be used at their original size according to the design. - -Click or tap on any icon to copy its name. - - diff --git a/apps/docs/content/icons/svg/icons-library.mdx b/apps/docs/content/icons/svg/library.mdx similarity index 91% rename from apps/docs/content/icons/svg/icons-library.mdx rename to apps/docs/content/icons/svg/library.mdx index 23de9b845..673862505 100644 --- a/apps/docs/content/icons/svg/icons-library.mdx +++ b/apps/docs/content/icons/svg/library.mdx @@ -1,5 +1,5 @@ --- -title: Icons Library +title: Library description: Getting started with Workleap Design Icons --- @@ -8,7 +8,7 @@ export const usageMethods = [ { title: "SVG" } ]; -# Icons Library +# Library All available icons in the icon library are shown below. diff --git a/apps/docs/content/icons/svg/rich-icons-library.mdx b/apps/docs/content/icons/svg/rich-icons-library.mdx deleted file mode 100644 index ff46d7d6a..000000000 --- a/apps/docs/content/icons/svg/rich-icons-library.mdx +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: Rich Icons Library -description: Getting started with Workleap Design Icons ---- - -export const usageMethods = [ - { title: "React" }, - { title: "SVG" } -]; - -# Rich Icons Library - -All available icons in the icon library are shown below. - -Use the correct size for each icon. Icons should be used at their original size according to the design. - -Click or tap on any icon to copy its filename. - - From 5b08fcc9c092902f787a4dc1cba4a19f22a1f24a Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Fri, 12 Apr 2024 13:22:36 -0400 Subject: [PATCH 10/33] updated hopper doc buttons and homepage --- apps/docs/app/home/home.css | 203 +++++++++++++++--- apps/docs/app/page.tsx | 68 +++--- .../docs/components/button/Button.stories.tsx | 1 - apps/docs/components/button/button.css | 3 +- apps/docs/package.json | 1 + pnpm-lock.yaml | 3 + 6 files changed, 213 insertions(+), 66 deletions(-) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index b5a7b2d52..a7df9fa7b 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -24,18 +24,21 @@ } .hd-home__features { - display: flex; - flex-wrap: wrap; + display: grid; gap: var(--hd-space-4); + grid-template-columns: repeat(1, 1fr); margin-top: var(--hd-space-10); + text-align: center; } .hd-home__feature-item { - flex: 1; + display: flex; + flex-direction: column; + align-items: center; } .hd-home__feature-title { - align-items: center; + justify-content: center; display: flex; font-size: 1.125rem; gap: var(--hd-space-1); @@ -48,6 +51,23 @@ stroke: var(--hd-color-neutral-icon); } +@media screen and (width >= 37.5rem) { + .hd-home__features { + grid-template-columns: repeat(2, 1fr); + text-align: left; + } + + .hd-home__feature-item { + align-items: start; + } +} + +@media screen and (width >= 48rem) { + .hd-home__features { + grid-template-columns: repeat(4, 1fr); + } +} + .hd-icon-fill { fill: var(--hd-color-neutral-icon); stroke: transparent; @@ -58,20 +78,27 @@ } .hd-home__feature-copy { - color: var(--neutral-text-weak); + color: var(--hd-color-neutral-text-weak); font-size: 0.875rem; line-height: 1.4285; margin-top: var(--hd-space-1); + max-width: 50ch; } /* Samples Section */ .hd-home-samples { display: grid; gap: var(--hd-space-3); - grid-template-columns: 1fr 1fr; + grid-template-columns: 1fr; margin-top: var(--hd-space-10); } +@media screen and (width >= 78.75rem) { + .hd-home-samples { + grid-template-columns: repeat(2, 1fr); + } +} + .hd-home-sample__item { --background: var(--hd-white); --color: var(--hd-neutral-50); @@ -142,20 +169,42 @@ a.hd-home-sample__item:hover::after { .hd-home-samples__row { display: grid; - grid-template-columns: 1fr 1fr; + grid-template-columns: 1fr; gap: 1.5rem; } +@media screen and (width >= 37.5rem) { + .hd-home-samples__row { + grid-template-columns: repeat(2, 1fr); + } +} + .hd-home-samples__col { display: grid; gap: 1.5rem; } +.hd-home-samples__main-wrapper { + grid-template-columns: 1fr; +} + +@media screen and (width >= 62rem) { + .hd-home-samples__main-wrapper { + grid-template-columns: repeat(2, 1fr); + } +} + +@media screen and (width >= 78.75rem) { + .hd-home-samples__main-wrapper { + grid-template-columns: 1fr; + } +} + /* colors sample */ .hd-home-sample__colors { - display: flex; + align-self: start; + display: grid; justify-content: flex-end; - flex-wrap: wrap; gap: var(--hd-space-1); margin-block: calc(-1 * var(--hd-space-1)); } @@ -174,6 +223,7 @@ a.hd-home-sample__item:hover::after { .hd-home-sample__item-colors { display: flex; + gap: var(--hd-space-1); justify-content: space-between; } @@ -223,7 +273,6 @@ a.hd-home-sample__item:hover::after { justify-content: space-between; gap: var(--hd-space-1); flex-wrap: wrap; - margin-block: var(--hd-space-1); } .hd-home-sample__size { @@ -240,7 +289,8 @@ a.hd-home-sample__item:hover::after { .hd-home-sample__size-bar { background-color: var(--hd-color-accent-surface); - height: 3.5rem; + min-height: 3.5rem; + height: 100%; } .hd-home-sample__size-16 .hd-home-sample__size-bar { @@ -264,6 +314,37 @@ a.hd-home-sample__item:hover::after { display: flex; gap: var(--hd-space-2); flex-direction: column; + flex-grow: 1; + justify-content: space-between +} + +.hd-home-sample__item-icons { + display: flex; + flex-direction: column; +} + +.hd-home-sample__icons-row.hd-home-sample__icons-extra-row { + display: none; +} + +@media screen and (width >= 62rem) { + .hd-home-sample__icons { + gap: var(--hd-space-3); + } + + .hd-home-sample__icons-row.hd-home-sample__icons-extra-row { + display: flex; + } +} + +@media screen and (width >= 78.75rem) { + .hd-home-sample__icons { + gap: var(--hd-space-2); + } + + .hd-home-sample__icons-row.hd-home-sample__icons-extra-row { + display: none; + } } .hd-home-sample__icons-row { @@ -272,15 +353,15 @@ a.hd-home-sample__item:hover::after { } .hd-home-samples .hd-home-sample__icons-icon { - color: #959593; + color: var(--hop-neutral-icon-weak); } .hd-home-samples .hd-home-sample__icons-icon--active { - color: #155AF9; + color: var(--hop-primary-icon); } .hd-home-samples .hd-home-sample__icons-icon--strong { - color: #3C3C3C; + color: var(--hop-neutral-icon); } /* Text Styles */ @@ -296,12 +377,26 @@ a.hd-home-sample__item:hover::after { border-style: solid; border-right: 0; border-top-width: var(--hd-border-size); - display: flex; - flex-grow: 1; + display: grid; + grid-template-columns: repeat(2, 1fr); gap: var(--hd-space-3); margin-top: var(--hd-space-3); } +@media screen and (width >= 37.5rem) { + .hd-home-sample__text-styles { + grid-template-columns: 1fr; + gap: var(--hd-space-1); + } +} + +@media screen and (width >= 44rem) { + .hd-home-sample__text-styles { + grid-template-columns: repeat(2, 1fr); + gap: var(--hd-space-3); + } +} + .hd-home-sample__text { font-family: Inter, sans-serif; font-size: 5.25rem; @@ -329,12 +424,30 @@ a.hd-home-sample__item:hover::after { border-right: 0; border-top: 0; border-left-width: var(--hd-border-size); + display: grid; flex-direction: column; flex-grow: 1; gap: 0.75rem; padding: var(--hd-space-2); } +@media screen and (width >= 37.5rem) { + .hd-home-sample__text-styles-controls { + grid-template-columns: repeat(2, 1fr); + border-image: linear-gradient(90deg, rgba(0 0 0 / 0%), rgb(186 188 192)) 1; + border-style: solid; + border-top-width: var(--hd-border-size); + } +} + +@media screen and (width >= 44rem) { + .hd-home-sample__text-styles-controls { + grid-template-columns: 1fr; + border-image: linear-gradient(0deg, rgba(0 0 0 / 0%), rgb(186 188 192)) 1; + border-top: 0; + } +} + [data-theme="dark"] .hd-home-sample__text-styles-controls { --background: var(--hd-neutral-900); } @@ -374,7 +487,25 @@ a.hd-home-sample__item:hover::after { .hd-home-sample-components { display: grid; - grid-template-columns: 1fr 1fr; + grid-template-columns: 1fr; +} + +@media screen and (width >= 37.5rem) { + .hd-home-sample-components { + grid-template-columns: repeat(2, 1fr); + } +} + +@media screen and (width >= 62rem) { + .hd-home-sample-components { + grid-template-columns: repeat(4, 1fr); + } +} + +@media screen and (width >= 78.75rem) { + .hd-home-sample-components { + grid-template-columns: repeat(2, 1fr); + } } .hd-home-sample-components__item { @@ -386,24 +517,26 @@ a.hd-home-sample__item:hover::after { padding: 1rem; } -.hd-home-sample-components__item:nth-child(odd) { - background: linear-gradient(-90deg, var(--background) 0%, var(--background) 85%, rgba(0 212 255 / 0%) 100%); - border-bottom: 0; - border-image: linear-gradient(90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; - border-style: solid; - border-right: 0; - border-left: 0; - border-top-width: var(--hd-border-size); -} - -.hd-home-sample-components__item:nth-child(even) { - background: linear-gradient(90deg, var(--background) 0%, var(--background) 85%, rgba(255 255 255 / 0%) 100%); - border-bottom: 0; - border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%), rgb(186 188 192)) 1; - border-style: solid; - border-right: 0; - border-left: 0; - border-top-width: var(--hd-border-size); +@media screen and (width >= 78.75rem) { + .hd-home-sample-components__item:nth-child(odd) { + background: linear-gradient(-90deg, var(--background) 0%, var(--background) 85%, rgba(0 212 255 / 0%) 100%); + border-bottom: 0; + border-image: linear-gradient(90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-left: 0; + border-top-width: var(--hd-border-size); + } + + .hd-home-sample-components__item:nth-child(even) { + background: linear-gradient(90deg, var(--background) 0%, var(--background) 85%, rgba(255 255 255 / 0%) 100%); + border-bottom: 0; + border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%), rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-left: 0; + border-top-width: var(--hd-border-size); + } } [data-theme="dark"] .hd-home-sample-components__item { diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 71f87a9a0..ba39e3bf9 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -16,7 +16,8 @@ import { useContext } from "react"; import Button from "../components/button/Button"; import { ExternalLinkIcon, Icon } from "@/components/icon"; -import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, ProfileIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, ThumbsUpIcon, WarningIcon } from "@hopper-ui/icons"; +// eslint-disable-next-line max-len +import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, FocusIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, NotebookIcon, PinIcon, ProfileIcon, ReactionIcon, RecurringIcon, RewindIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, SyncIcon, TeamIcon, ThumbsUpIcon, UnarchiveIcon, WarningIcon } from "@hopper-ui/icons"; import "@hopper-ui/tokens/fonts.css"; import "./home/home.css"; @@ -64,7 +65,7 @@ export default function Home() {
-
+

Icons

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit

- -
-
- - - - - - - - - -
-
- - - - - - - - - -
+

A set of commonly used interface icons.

+ +
+ + + + + + + + + +
+
+ + + + + + + + + +
+
+ + + + + + + + +
@@ -183,8 +193,8 @@ export default function Home() {
- Confirm - I need help + Confirm + I need help
diff --git a/apps/docs/components/button/Button.stories.tsx b/apps/docs/components/button/Button.stories.tsx index 6dafae8ea..229c921dd 100644 --- a/apps/docs/components/button/Button.stories.tsx +++ b/apps/docs/components/button/Button.stories.tsx @@ -49,7 +49,6 @@ export const AsLink: Story = { as: "a", href: "https://www.npmjs.com/package/@hopper-ui/components", target: "_blank" - }, render: args => (
diff --git a/apps/docs/components/button/button.css b/apps/docs/components/button/button.css index 7a06b9555..9ad25469a 100644 --- a/apps/docs/components/button/button.css +++ b/apps/docs/components/button/button.css @@ -32,7 +32,8 @@ flex-direction: row-reverse; } -.hd-btn[data-focus-visible="true"] { +.hd-btn[data-focus-visible="true"], +a.hd-btn:focus-visible { box-shadow: var(--hd-focus-ring); } diff --git a/apps/docs/package.json b/apps/docs/package.json index 7c0437b15..dfcfd22d3 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -33,6 +33,7 @@ "@codesandbox/sandpack-react": "^2.13.5", "@hopper-ui/components": "workspace:*", "@hopper-ui/tokens": "workspace:*", + "@hopper-ui/icons": "workspace:*", "@storybook/addon-essentials": "8.0.2", "@storybook/addon-interactions": "8.0.2", "@storybook/addon-links": "8.0.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3795dd864..a8bae55f4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -183,6 +183,9 @@ importers: '@hopper-ui/components': specifier: workspace:* version: link:../../packages/components + '@hopper-ui/icons': + specifier: workspace:* + version: link:../../packages/icons '@hopper-ui/tokens': specifier: workspace:* version: link:../../packages/tokens From 08cb364487db2a829a9d7da921522fad901f7a2f Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Fri, 12 Apr 2024 16:57:29 -0400 Subject: [PATCH 11/33] mobile view --- apps/docs/app/home/home.css | 31 +++++++++++++++++++++++---- apps/docs/app/page.tsx | 42 ++++++++++++++++++++++--------------- 2 files changed, 52 insertions(+), 21 deletions(-) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index a7df9fa7b..9a416c671 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -508,17 +508,22 @@ a.hd-home-sample__item:hover::after { } } +.hd-home-sample-components__item-wrapper { + display: flex; +} + .hd-home-sample-components__item { --background: rgba(255 255 255 / 70%); align-items: center; display: flex;; + flex-grow: 1; justify-content: center; padding: 1rem; } @media screen and (width >= 78.75rem) { - .hd-home-sample-components__item:nth-child(odd) { + .hd-home-sample-components__item-wrapper:nth-child(odd) { background: linear-gradient(-90deg, var(--background) 0%, var(--background) 85%, rgba(0 212 255 / 0%) 100%); border-bottom: 0; border-image: linear-gradient(90deg,rgba(0 0 0 / 0%),rgb(186 188 192)) 1; @@ -528,7 +533,7 @@ a.hd-home-sample__item:hover::after { border-top-width: var(--hd-border-size); } - .hd-home-sample-components__item:nth-child(even) { + .hd-home-sample-components__item-wrapper:nth-child(even) { background: linear-gradient(90deg, var(--background) 0%, var(--background) 85%, rgba(255 255 255 / 0%) 100%); border-bottom: 0; border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%), rgb(186 188 192)) 1; @@ -537,6 +542,24 @@ a.hd-home-sample__item:hover::after { border-left: 0; border-top-width: var(--hd-border-size); } + + .hd-home-sample-components__item-wrapper:nth-child(2) .hd-home-sample-components__item { + border-bottom: 0; + border-image: linear-gradient(-90deg,rgba(0 0 0 / 0%), rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-left-width: var(--hd-border-size); + border-top: 0; + } + + .hd-home-sample-components__item-wrapper:nth-child(4) .hd-home-sample-components__item { + border-bottom: 0; + border-image: linear-gradient(0deg,rgba(0 0 0 / 0%) 0%, rgba(0 0 0 / 0%) 45%, rgb(186 188 192)) 1; + border-style: solid; + border-right: 0; + border-left-width: var(--hd-border-size); + border-top: 0; + } } [data-theme="dark"] .hd-home-sample-components__item { @@ -551,7 +574,7 @@ a.hd-home-sample__item:hover::after { /* Upcoming */ .hd-home-sample__item-upcoming { - background-image: linear-gradient(1deg, rgba(60 60 60 / 20%) 0.94%, rgba(60 60 60 / 50%) 75.3%); + background-image: linear-gradient(0deg, rgba(202 79 79 / 20%) 0%, rgba(60 60 60 / 50%) 75%); border-radius: inherit; display: flex; inset: 0; @@ -561,7 +584,7 @@ a.hd-home-sample__item:hover::after { } [data-theme="dark"] .hd-home-sample__item-upcoming { - background: linear-gradient(1deg, rgba(80 80 80 / 20%) 0.94%, rgba(80 80 80 / 60%) 75.3%); + background: linear-gradient(0deg, rgba(80 80 80 / 20%) 0%, rgba(80 80 80 / 60%) 75%); opacity: 0.6; } diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index ba39e3bf9..0637a41bf 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -69,7 +69,7 @@ export default function Home() {
-

Colors

+

Colors

@@ -86,7 +86,7 @@ export default function Home() {
-

Sizes

+

Sizes

16 @@ -109,7 +109,7 @@ export default function Home() {
-

Text Styles

+

Text Styles

Aa @@ -137,7 +137,7 @@ export default function Home() {
-

Icons

+

Icons

A set of commonly used interface icons.

@@ -184,22 +184,30 @@ export default function Home() {

Lorem ipsum dolor sit amet, consectetur adipiscing elit

-
- Avatar Group component preview +
+
+ Avatar Group component preview +
-
- Select Fielg component preview +
+
+ Select Fielg component preview +
-
- -
- Confirm - I need help -
-
+
+
+ +
+ Confirm + I need help +
+
+
-
- Radio Group Component preview +
+
+ Radio Group Component preview +
From 01c94546ad0f9587c05cf08773b20c41bfc1f468 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Mon, 15 Apr 2024 10:27:29 -0400 Subject: [PATCH 12/33] added copy --- apps/docs/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 0637a41bf..31e7b4bb4 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -31,8 +31,8 @@ export default function Home() {
-

Fusce semper facilisis finibus.

-

Sed condimentum, arcu sit amet tempus posuere, sapien ex vulputate risus, placerat convallis lectus ex.

+

Leap into creativity

+

Explore our Design System, where icons, tokens, and components are handpicked for ultimate simplicity and accessibility.

@@ -182,7 +182,7 @@ export default function Home() {

Components

upcoming
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit

+

An accessible suite of components powered by react-aria.

From 66c87a125b1fb46d53fd11e2b1efe426bfedcccc Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Mon, 15 Apr 2024 14:14:55 -0400 Subject: [PATCH 13/33] header color adjustments per theme --- apps/docs/app/home/assets/arrow.svg | 2 +- apps/docs/app/home/home.css | 5 +++++ apps/docs/app/ui/layout/header/header.css | 24 +++++++++++++++++------ 3 files changed, 24 insertions(+), 7 deletions(-) diff --git a/apps/docs/app/home/assets/arrow.svg b/apps/docs/app/home/assets/arrow.svg index c3824b609..88f4a7332 100644 --- a/apps/docs/app/home/assets/arrow.svg +++ b/apps/docs/app/home/assets/arrow.svg @@ -1 +1 @@ - + diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index 9a416c671..47fad6685 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -1,4 +1,7 @@ .hd-home__heading { + align-items: center; + display: flex; + flex-direction: column; text-align: center; margin: 0 auto; max-width: 43rem; @@ -14,6 +17,7 @@ font-size: 1rem; line-height: 1.5; margin-top: var(--hd-space-1); + max-width: 60ch; } .hd-home__ctas { @@ -154,6 +158,7 @@ a.hd-home-sample__item:hover::after { } .hd-home-sample__title-icon { + fill: var(--hd-color-neutral-icon); opacity: 0; transform: translateX(-1rem); transition: opacity 0.2s ease, transform 0.1s ease-in; diff --git a/apps/docs/app/ui/layout/header/header.css b/apps/docs/app/ui/layout/header/header.css index 3a8e37f2f..3ebfe5f22 100644 --- a/apps/docs/app/ui/layout/header/header.css +++ b/apps/docs/app/ui/layout/header/header.css @@ -3,10 +3,22 @@ --hd-header-background-color: rgb(252 251 251 / 50%); --hd-header-border-color: var(--hd-color-neutral-border-weak); --hd-header-height: var(--hd-space-8); + --hd-header-shadow-1-block-color: rgba(175 182 225 / 80%); + --hd-header-shadow-2-block-color: #FECD94; + --hd-header-shadow-3-block-color: #A9F1D6; + --hd-header-shadow-1-top-position: -2.75rem; + --hd-header-shadow-2-top-position: -21.25rem; + --hd-header-shadow-3-top-position: -10.5rem; } [data-theme="dark"] { --hd-header-background-color: rgb(41 40 41 / 80%); + --hd-header-shadow-1-block-color: rgba(175 182 225 / 70%); + --hd-header-shadow-2-block-color: #FECD94; + --hd-header-shadow-3-block-color: #A9F1D6; + --hd-header-shadow-1-top-position: -18.75rem; + --hd-header-shadow-2-top-position: -31.25rem; + --hd-header-shadow-3-top-position: -19.5rem; } .hd-header { @@ -94,25 +106,25 @@ } .hd-header-shadow-block-1 { - background-color: #AFB6E1; + background-color: var(--hd-header-shadow-1-block-color); width: 32rem; height: 32rem; - top: -18.75rem; + top: var(--hd-header-shadow-1-top-position); right: 6rem; } .hd-header-shadow-block-2 { width: 40rem; height: 40rem; - background-color: #FECD94; + background-color: var(--hd-header-shadow-2-block-color); filter: blur(12.5rem); - top: -31.25rem; + top: var(--hd-header-shadow-2-top-position); } .hd-header-shadow-block-3 { - background-color: #A9F1D6; + background-color: var(--hd-header-shadow-3-block-color); width: 32rem; height: 32rem; - top: -24rem; + top: var(--hd-header-shadow-3-top-position); left: -10.5rem; } From edd645930b3871ec8d69d936dce1496427e0ef11 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Mon, 15 Apr 2024 14:32:37 -0400 Subject: [PATCH 14/33] fixed heading spacing issue when no aside present --- apps/docs/app/layout.css | 7 ------- apps/docs/app/ui/layout/aside/aside.css | 8 ++++++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/apps/docs/app/layout.css b/apps/docs/app/layout.css index fdf270501..b5d9703bd 100644 --- a/apps/docs/app/layout.css +++ b/apps/docs/app/layout.css @@ -29,12 +29,6 @@ main { order: 1; } -@media screen and (width >= 48rem) { - main { - padding-block-start: 0; - } -} - @media screen and (width >= 62rem) { .hd-container { flex-direction: row; @@ -42,7 +36,6 @@ main { main { order: 1; - padding-block-start: var(--hd-space-8); } } diff --git a/apps/docs/app/ui/layout/aside/aside.css b/apps/docs/app/ui/layout/aside/aside.css index 53d5f6607..837601c06 100644 --- a/apps/docs/app/ui/layout/aside/aside.css +++ b/apps/docs/app/ui/layout/aside/aside.css @@ -11,6 +11,10 @@ display: flex; padding-block-start: var(--hd-space-8); } + + .hd-aside + main { + padding-block-start: 0; + } } @media screen and (width >= 62rem) { @@ -23,6 +27,10 @@ top: var(--hd-space-8); height: calc(100vh - var(--hd-space-8)); } + + .hd-aside + main { + padding-block-start: var(--hd-space-8); + } } .hd-aside__list { From 581840f08d02730d56dfe5076272199dd74a8e07 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Mon, 15 Apr 2024 15:50:00 -0400 Subject: [PATCH 15/33] lint error in package json --- apps/docs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/package.json b/apps/docs/package.json index dfcfd22d3..b7872d30a 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -32,8 +32,8 @@ "devDependencies": { "@codesandbox/sandpack-react": "^2.13.5", "@hopper-ui/components": "workspace:*", - "@hopper-ui/tokens": "workspace:*", "@hopper-ui/icons": "workspace:*", + "@hopper-ui/tokens": "workspace:*", "@storybook/addon-essentials": "8.0.2", "@storybook/addon-interactions": "8.0.2", "@storybook/addon-links": "8.0.2", From c721328ad7a7300e950db57155594993fe1e2f32 Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Mon, 15 Apr 2024 15:58:32 -0400 Subject: [PATCH 16/33] adjusted component gradient length --- apps/docs/app/home/home.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index 47fad6685..fab872858 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -559,7 +559,7 @@ a.hd-home-sample__item:hover::after { .hd-home-sample-components__item-wrapper:nth-child(4) .hd-home-sample-components__item { border-bottom: 0; - border-image: linear-gradient(0deg,rgba(0 0 0 / 0%) 0%, rgba(0 0 0 / 0%) 45%, rgb(186 188 192)) 1; + border-image: linear-gradient(0deg,rgba(0 0 0 / 0%) 0%, rgba(0 0 0 / 0%) 25%, rgb(186 188 192)) 1; border-style: solid; border-right: 0; border-left-width: var(--hd-border-size); From aabfa7ff2c01888e7b12a02aeef4e2f28c25f62c Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Wed, 17 Apr 2024 12:12:05 -0400 Subject: [PATCH 17/33] PR fixes --- apps/docs/app/home/home.css | 14 ++------------ apps/docs/app/page.tsx | 11 ++++++----- 2 files changed, 8 insertions(+), 17 deletions(-) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home/home.css index fab872858..ceca49135 100644 --- a/apps/docs/app/home/home.css +++ b/apps/docs/app/home/home.css @@ -12,7 +12,7 @@ line-height: 1.3333; } -.hd-home__copy { +.hd-home__tagline { color: var(--hd-color-neutral-text-weak); font-size: 1rem; line-height: 1.5; @@ -164,7 +164,7 @@ a.hd-home-sample__item:hover::after { transition: opacity 0.2s ease, transform 0.1s ease-in; } -.hd-home-sample__copy { +.hd-home-sample__tagline { color: var(--hd-color-neutral-text-weak); font-size: 1rem; line-height: 1.5; @@ -592,13 +592,3 @@ a.hd-home-sample__item:hover::after { background: linear-gradient(0deg, rgba(80 80 80 / 20%) 0%, rgba(80 80 80 / 60%) 75%); opacity: 0.6; } - -/* Tag */ -.hd-tag-accent { - background-color: var(--hd-color-accent-surface); - border-radius: 0.5rem; - color: var(--hd-color-accent-text); - font-size: 0.875rem; - line-height: 1.4285; - padding-inline: var(--hd-space-05); -} diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 31e7b4bb4..4232ba15f 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -13,7 +13,8 @@ import ArrowIcon from "./home/assets/arrow.svg"; import SelectArrowIcon from "./home/assets/select-arrow.svg"; import { type ColorScheme, ThemeContext } from "@/context/theme/ThemeProvider.tsx"; import { useContext } from "react"; -import Button from "../components/button/Button"; +import Button from "@/components/button/Button"; +import Tag from "@/components/tag/Tag"; import { ExternalLinkIcon, Icon } from "@/components/icon"; // eslint-disable-next-line max-len @@ -32,7 +33,7 @@ export default function Home() {

Leap into creativity

-

Explore our Design System, where icons, tokens, and components are handpicked for ultimate simplicity and accessibility.

+

Explore our Design System, where icons, tokens, and components are handpicked for ultimate simplicity and accessibility.

@@ -138,7 +139,7 @@ export default function Home() {

Icons

-

A set of commonly used interface icons.

+

A set of commonly used interface icons.

@@ -180,9 +181,9 @@ export default function Home() {

Components

- upcoming + upcoming
-

An accessible suite of components powered by react-aria.

+

An accessible suite of components powered by react-aria.

From a072c1270c75cc8f01added7eb98afde5fd7e6ca Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Wed, 17 Apr 2024 14:43:23 -0400 Subject: [PATCH 18/33] moved home and home icon assets --- apps/docs/app/{home => }/home.css | 0 apps/docs/app/home/assets/external-link.svg | 1 - apps/docs/app/page.tsx | 12 ++----- .../icon}/assets/accessible.svg | 0 .../home => components/icon}/assets/arrow.svg | 0 .../icon}/assets/dark-mode.svg | 0 .../icon}/assets/font-size.svg | 0 .../icon}/assets/international.svg | 0 .../icon}/assets/line-height.svg | 0 .../icon}/assets/margin.svg | 0 .../icon}/assets/select-arrow.svg | 0 .../icon}/assets/typescript.svg | 0 apps/docs/components/icon/index.tsx | 33 +++++++++++++++---- 13 files changed, 28 insertions(+), 18 deletions(-) rename apps/docs/app/{home => }/home.css (100%) delete mode 100644 apps/docs/app/home/assets/external-link.svg rename apps/docs/{app/home => components/icon}/assets/accessible.svg (100%) rename apps/docs/{app/home => components/icon}/assets/arrow.svg (100%) rename apps/docs/{app/home => components/icon}/assets/dark-mode.svg (100%) rename apps/docs/{app/home => components/icon}/assets/font-size.svg (100%) rename apps/docs/{app/home => components/icon}/assets/international.svg (100%) rename apps/docs/{app/home => components/icon}/assets/line-height.svg (100%) rename apps/docs/{app/home => components/icon}/assets/margin.svg (100%) rename apps/docs/{app/home => components/icon}/assets/select-arrow.svg (100%) rename apps/docs/{app/home => components/icon}/assets/typescript.svg (100%) diff --git a/apps/docs/app/home/home.css b/apps/docs/app/home.css similarity index 100% rename from apps/docs/app/home/home.css rename to apps/docs/app/home.css diff --git a/apps/docs/app/home/assets/external-link.svg b/apps/docs/app/home/assets/external-link.svg deleted file mode 100644 index a5de228d9..000000000 --- a/apps/docs/app/home/assets/external-link.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 4232ba15f..80884aca7 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -2,15 +2,7 @@ import { Button as HopperButton, HopperProvider } from "@hopper-ui/components"; import Image from "next/image"; -import AccessibleIcon from "./home/assets/accessible.svg"; -import InternationalIcon from "./home/assets/international.svg"; -import TypescriptIcon from "./home/assets/typescript.svg"; -import DarkModeIcon from "./home/assets/dark-mode.svg"; -import FontSizeIcon from "./home/assets/font-size.svg"; -import LineHeightIcon from "./home/assets/line-height.svg"; -import MarginIcon from "./home/assets/margin.svg"; -import ArrowIcon from "./home/assets/arrow.svg"; -import SelectArrowIcon from "./home/assets/select-arrow.svg"; +import { AccessibleIcon, ArrowIcon, DarkModeIcon, FontSizeIcon, InternationalIcon, LineHeightIcon, MarginIcon, SelectArrowIcon, TypescriptIcon } from "../components/icon/index"; import { type ColorScheme, ThemeContext } from "@/context/theme/ThemeProvider.tsx"; import { useContext } from "react"; import Button from "@/components/button/Button"; @@ -21,7 +13,7 @@ import { ExternalLinkIcon, Icon } from "@/components/icon"; import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, FocusIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, NotebookIcon, PinIcon, ProfileIcon, ReactionIcon, RecurringIcon, RewindIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, SyncIcon, TeamIcon, ThumbsUpIcon, UnarchiveIcon, WarningIcon } from "@hopper-ui/icons"; import "@hopper-ui/tokens/fonts.css"; -import "./home/home.css"; +import "./home.css"; export default function Home() { const { colorMode } = useContext(ThemeContext); diff --git a/apps/docs/app/home/assets/accessible.svg b/apps/docs/components/icon/assets/accessible.svg similarity index 100% rename from apps/docs/app/home/assets/accessible.svg rename to apps/docs/components/icon/assets/accessible.svg diff --git a/apps/docs/app/home/assets/arrow.svg b/apps/docs/components/icon/assets/arrow.svg similarity index 100% rename from apps/docs/app/home/assets/arrow.svg rename to apps/docs/components/icon/assets/arrow.svg diff --git a/apps/docs/app/home/assets/dark-mode.svg b/apps/docs/components/icon/assets/dark-mode.svg similarity index 100% rename from apps/docs/app/home/assets/dark-mode.svg rename to apps/docs/components/icon/assets/dark-mode.svg diff --git a/apps/docs/app/home/assets/font-size.svg b/apps/docs/components/icon/assets/font-size.svg similarity index 100% rename from apps/docs/app/home/assets/font-size.svg rename to apps/docs/components/icon/assets/font-size.svg diff --git a/apps/docs/app/home/assets/international.svg b/apps/docs/components/icon/assets/international.svg similarity index 100% rename from apps/docs/app/home/assets/international.svg rename to apps/docs/components/icon/assets/international.svg diff --git a/apps/docs/app/home/assets/line-height.svg b/apps/docs/components/icon/assets/line-height.svg similarity index 100% rename from apps/docs/app/home/assets/line-height.svg rename to apps/docs/components/icon/assets/line-height.svg diff --git a/apps/docs/app/home/assets/margin.svg b/apps/docs/components/icon/assets/margin.svg similarity index 100% rename from apps/docs/app/home/assets/margin.svg rename to apps/docs/components/icon/assets/margin.svg diff --git a/apps/docs/app/home/assets/select-arrow.svg b/apps/docs/components/icon/assets/select-arrow.svg similarity index 100% rename from apps/docs/app/home/assets/select-arrow.svg rename to apps/docs/components/icon/assets/select-arrow.svg diff --git a/apps/docs/app/home/assets/typescript.svg b/apps/docs/components/icon/assets/typescript.svg similarity index 100% rename from apps/docs/app/home/assets/typescript.svg rename to apps/docs/components/icon/assets/typescript.svg diff --git a/apps/docs/components/icon/index.tsx b/apps/docs/components/icon/index.tsx index adfbb8eeb..713ca09db 100644 --- a/apps/docs/components/icon/index.tsx +++ b/apps/docs/components/icon/index.tsx @@ -1,16 +1,35 @@ -import NpmIcon from "./assets/npm.svg"; -import GithubIcon from "./assets/github.svg"; -import ExternalLinkIcon from "./assets/external-link.svg"; +import AccessibleIcon from "./assets/accessible.svg"; +import ArrowIcon from "./assets/arrow.svg"; import ComponentIcon from "./assets/component.svg"; +import DarkModeIcon from "./assets/dark-mode.svg"; +import ExternalLinkIcon from "./assets/external-link.svg"; +import FontSizeIcon from "./assets/font-size.svg"; +import GithubIcon from "./assets/github.svg"; +import InternationalIcon from "./assets/international.svg"; +import LineHeightIcon from "./assets/line-height.svg"; +import MarginIcon from "./assets/margin.svg"; +import NpmIcon from "./assets/npm.svg"; +import SelectArrowIcon from "./assets/select-arrow.svg"; import TokenIcon from "./assets/tokens.svg"; +import TypescriptIcon from "./assets/typescript.svg"; + import Icon, { type IconProps } from "./Icon.tsx"; export { - Icon, - NpmIcon, - GithubIcon, - ExternalLinkIcon, + AccessibleIcon, + ArrowIcon, ComponentIcon, + DarkModeIcon, + ExternalLinkIcon, + FontSizeIcon, + GithubIcon, + InternationalIcon, + LineHeightIcon, + MarginIcon, + NpmIcon, + SelectArrowIcon, TokenIcon, + TypescriptIcon, + Icon, IconProps }; From 335936deb05740b56ef95a89aba65d484fb202ef Mon Sep 17 00:00:00 2001 From: Franck Gaudin Date: Mon, 22 Apr 2024 13:11:16 -0400 Subject: [PATCH 19/33] feat(doc): render components props table --- apps/docs/.eslintrc.json | 3 +- apps/docs/app/components/[slug]/page.tsx | 1 + apps/docs/app/lib/getComponentDetails.ts | 1 + .../app/ui/components/propTable/PropTable.tsx | 93 +++++++++++ .../collapsible/Collapsible.stories.tsx | 28 ++++ .../components/collapsible/Collapsible.tsx | 51 ++++++ .../components/collapsible/collapsible.css | 46 ++++++ apps/docs/components/icon/assets/collapse.svg | 6 + apps/docs/components/icon/index.tsx | 2 + apps/docs/components/mdx/components.tsx | 5 + apps/docs/content/components/button.mdx | 4 + apps/docs/datas/components/Button.json | 1 + apps/docs/datas/components/ButtonContext.json | 1 + apps/docs/datas/components/ButtonGroup.json | 1 + .../datas/components/ButtonGroupContext.json | 1 + apps/docs/datas/components/Checkbox.json | 1 + .../datas/components/CheckboxContext.json | 1 + apps/docs/datas/components/CheckboxField.json | 1 + .../components/CheckboxFieldContext.json | 1 + apps/docs/datas/components/CheckboxGroup.json | 1 + .../components/CheckboxGroupContext.json | 1 + apps/docs/datas/components/CheckboxList.json | 1 + .../datas/components/CheckboxListContext.json | 1 + apps/docs/datas/components/ClearSlots.json | 1 + apps/docs/datas/components/ErrorMessage.json | 1 + .../datas/components/ErrorMessageContext.json | 1 + apps/docs/datas/components/Flex.json | 1 + apps/docs/datas/components/Grid.json | 1 + apps/docs/datas/components/HelperMessage.json | 1 + .../components/HelperMessageContext.json | 1 + .../docs/datas/components/HopperProvider.json | 1 + apps/docs/datas/components/IconList.json | 1 + .../datas/components/IconListContext.json | 1 + apps/docs/datas/components/Inline.json | 1 + apps/docs/datas/components/Label.json | 1 + apps/docs/datas/components/LabelContext.json | 1 + apps/docs/datas/components/Link.json | 1 + apps/docs/datas/components/LinkContext.json | 1 + apps/docs/datas/components/SlotProvider.json | 1 + apps/docs/datas/components/Spinner.json | 1 + .../docs/datas/components/SpinnerContext.json | 1 + apps/docs/datas/components/Stack.json | 1 + apps/docs/datas/components/Text.json | 1 + apps/docs/datas/components/TextContext.json | 1 + .../composeClassnameRenderProps.json | 1 + apps/docs/datas/components/cssModule.json | 1 + .../datas/components/isTextOnlyChildren.json | 1 + apps/docs/datas/components/sizeAdapter.json | 1 + apps/docs/datas/components/types.json | 1 + .../datas/components/useLocalizedString.json | 1 + .../docs/datas/components/useRenderProps.json | 1 + apps/docs/datas/components/useSlot.json | 1 + apps/docs/package.json | 36 +++-- apps/docs/scripts/generateComponentData.mts | 146 ++++++++++++++++++ .../components/src/buttons/src/Button.tsx | 35 ++++- pnpm-lock.yaml | 134 +++------------- 56 files changed, 494 insertions(+), 138 deletions(-) create mode 100644 apps/docs/app/ui/components/propTable/PropTable.tsx create mode 100644 apps/docs/components/collapsible/Collapsible.stories.tsx create mode 100644 apps/docs/components/collapsible/Collapsible.tsx create mode 100644 apps/docs/components/collapsible/collapsible.css create mode 100644 apps/docs/components/icon/assets/collapse.svg create mode 100644 apps/docs/datas/components/Button.json create mode 100644 apps/docs/datas/components/ButtonContext.json create mode 100644 apps/docs/datas/components/ButtonGroup.json create mode 100644 apps/docs/datas/components/ButtonGroupContext.json create mode 100644 apps/docs/datas/components/Checkbox.json create mode 100644 apps/docs/datas/components/CheckboxContext.json create mode 100644 apps/docs/datas/components/CheckboxField.json create mode 100644 apps/docs/datas/components/CheckboxFieldContext.json create mode 100644 apps/docs/datas/components/CheckboxGroup.json create mode 100644 apps/docs/datas/components/CheckboxGroupContext.json create mode 100644 apps/docs/datas/components/CheckboxList.json create mode 100644 apps/docs/datas/components/CheckboxListContext.json create mode 100644 apps/docs/datas/components/ClearSlots.json create mode 100644 apps/docs/datas/components/ErrorMessage.json create mode 100644 apps/docs/datas/components/ErrorMessageContext.json create mode 100644 apps/docs/datas/components/Flex.json create mode 100644 apps/docs/datas/components/Grid.json create mode 100644 apps/docs/datas/components/HelperMessage.json create mode 100644 apps/docs/datas/components/HelperMessageContext.json create mode 100644 apps/docs/datas/components/HopperProvider.json create mode 100644 apps/docs/datas/components/IconList.json create mode 100644 apps/docs/datas/components/IconListContext.json create mode 100644 apps/docs/datas/components/Inline.json create mode 100644 apps/docs/datas/components/Label.json create mode 100644 apps/docs/datas/components/LabelContext.json create mode 100644 apps/docs/datas/components/Link.json create mode 100644 apps/docs/datas/components/LinkContext.json create mode 100644 apps/docs/datas/components/SlotProvider.json create mode 100644 apps/docs/datas/components/Spinner.json create mode 100644 apps/docs/datas/components/SpinnerContext.json create mode 100644 apps/docs/datas/components/Stack.json create mode 100644 apps/docs/datas/components/Text.json create mode 100644 apps/docs/datas/components/TextContext.json create mode 100644 apps/docs/datas/components/composeClassnameRenderProps.json create mode 100644 apps/docs/datas/components/cssModule.json create mode 100644 apps/docs/datas/components/isTextOnlyChildren.json create mode 100644 apps/docs/datas/components/sizeAdapter.json create mode 100644 apps/docs/datas/components/types.json create mode 100644 apps/docs/datas/components/useLocalizedString.json create mode 100644 apps/docs/datas/components/useRenderProps.json create mode 100644 apps/docs/datas/components/useSlot.json create mode 100644 apps/docs/scripts/generateComponentData.mts diff --git a/apps/docs/.eslintrc.json b/apps/docs/.eslintrc.json index c632ceb3b..0acfc33fd 100644 --- a/apps/docs/.eslintrc.json +++ b/apps/docs/.eslintrc.json @@ -22,7 +22,8 @@ "Switcher": true, "IconSpecTable": true, "PreviewComponent": true, - "MigrateGuide": true + "MigrateGuide": true, + "PropTable": true }, "overrides": [ { diff --git a/apps/docs/app/components/[slug]/page.tsx b/apps/docs/app/components/[slug]/page.tsx index c83efe0e1..9bfc35f8d 100644 --- a/apps/docs/app/components/[slug]/page.tsx +++ b/apps/docs/app/components/[slug]/page.tsx @@ -1,3 +1,4 @@ +"use client"; import { notFound } from "next/navigation"; import Heading from "@/app/ui/components/heading/Heading.tsx"; import { getComponentDetails } from "@/app/lib/getComponentDetails.ts"; diff --git a/apps/docs/app/lib/getComponentDetails.ts b/apps/docs/app/lib/getComponentDetails.ts index 5c74769b5..96b992fd4 100644 --- a/apps/docs/app/lib/getComponentDetails.ts +++ b/apps/docs/app/lib/getComponentDetails.ts @@ -41,6 +41,7 @@ function getMDXData(dir: string) { const { frontmatter, content } = await readMDXFile(path.join(dir, file)); const slug = path.basename(file, path.extname(file)); + return { slug, frontmatter, diff --git a/apps/docs/app/ui/components/propTable/PropTable.tsx b/apps/docs/app/ui/components/propTable/PropTable.tsx new file mode 100644 index 000000000..f40f57a2d --- /dev/null +++ b/apps/docs/app/ui/components/propTable/PropTable.tsx @@ -0,0 +1,93 @@ +import { promises as fs } from "fs"; +import path from "path"; +import type { PropItem } from "react-docgen-typescript/lib/parser"; +import type { ComponentDocWithGroups } from "@/scripts/generateComponentData.mjs"; +import Collapsible from "@/components/collapsible/Collapsible.tsx"; +import Title from "@/components/title/Title.tsx"; + +export interface PropTableProps { + component: string; +} + +interface PropItemTypeValue { + name: string; + value?: Array<{ value: string; name: string }>; + raw?: string; +} + +const filePath = path.join(process.cwd(), "datas", "components"); + +const getType = (type: PropItemTypeValue) => { + const handler: { + [key: string]: (type: PropItemTypeValue) => string; + } = { + enum: t => + t.value ? t.value.map(item => item.value.replace(/'/g, "")).join(" \\| ") : "", + union: t => t.value ? t.value.map(item => item.name).join(" \\| ") : "" + }; + if (typeof handler[type.name] === "function") { + return handler[type.name](type).replace(/\|/g, ""); + } + + return type.name; +}; + +const renderRow = (key: string, prop: PropItem) => { + const { name, type, defaultValue, required, description } = prop; + + return ( + + {name} + {getType(type)} + {defaultValue?.value} + {required ? "✓" : "✗"} + {description} + + ); +}; + +export default async function PropTable({ component }: PropTableProps) { + const file = await fs.readFile(filePath + `/${component}.json`, "utf8"); + const data = JSON.parse(file); + + return data.map((item: ComponentDocWithGroups) => { + const { description, displayName, groups } = item; + + return ( + <> +

{displayName}

+

{description}

+ {Object.keys(groups).map(group => { + return ( + <> + + {group} + + } + key={group} + > + + + + + + + + + + + + {Object.keys(groups[group]).map(key => renderRow(key, groups[group][key]))} + +
PropertyTypeDefaultRequiredDescription
+
+ + + ); + })} + + ); + }); +} diff --git a/apps/docs/components/collapsible/Collapsible.stories.tsx b/apps/docs/components/collapsible/Collapsible.stories.tsx new file mode 100644 index 000000000..6b9a4b0f9 --- /dev/null +++ b/apps/docs/components/collapsible/Collapsible.stories.tsx @@ -0,0 +1,28 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import Collasible from "./Collapsible.tsx"; + + +const meta = { + title: "components/Collasible", + component: Collasible +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + args: { + title: "Label", + children: "conent of the collapsible" + } +}; + +export const Multiple: Story = { + render: () => ( +
+ content of the collapsible 1 + content of the collapsible 2 +
+ ) +}; diff --git a/apps/docs/components/collapsible/Collapsible.tsx b/apps/docs/components/collapsible/Collapsible.tsx new file mode 100644 index 000000000..94d20c3b8 --- /dev/null +++ b/apps/docs/components/collapsible/Collapsible.tsx @@ -0,0 +1,51 @@ +"use client"; + +import clsx from "clsx"; +import { type ReactNode, useRef, useState } from "react"; +import { ToggleButton } from "react-aria-components"; +import { Icon, CollapseIcon } from "@/components/icon"; + +import "./collapsible.css"; + +export interface CollapsibleProps { + children: ReactNode; + title: ReactNode; + label?: string; + isOpen?: boolean; +} + +const Collapsible = ({ children, title, label, isOpen = false }: CollapsibleProps) => { + const [open, setOpen] = useState(isOpen); + const contentRef = useRef(null); + + let styles = { height: "0px" }; + + if (contentRef.current && open) { + styles = { height: contentRef.current.scrollHeight + "px" }; + } + + const toggle = () => { + setOpen(!open); + }; + + return ( +
+ + {title} + + +
+
{children}
+
+
+ ); +}; + +export default Collapsible; diff --git a/apps/docs/components/collapsible/collapsible.css b/apps/docs/components/collapsible/collapsible.css new file mode 100644 index 000000000..145a6e39c --- /dev/null +++ b/apps/docs/components/collapsible/collapsible.css @@ -0,0 +1,46 @@ +/* Collapse */ +.hd-collapsible__trigger { + font-family: var(--hd-default-font-family); + font-size: var(--hd-default-font-size); + line-height: 1.35; + color: var(--hd-color-neutral-text); + display: flex; + width: 100%; + justify-content: space-between; + align-items: center; + padding: var(--hd-space-1); + border: none; + border-radius: 0.25rem; + background: var(--hd-color-neutral-surface); + box-shadow: none; + transition: box-shadow 0.15s ease-in-out; +} + +.hd-collapsible__trigger[data-hovered="true"] { + cursor: pointer; + box-shadow: 0 0.25rem 0.625rem 0.25rem rgb(60 60 60 / 8%); +} + +.hd-collapsible__trigger .hd-title { + margin-block: 0; + margin-inline: 0; +} + +.hd-collapsible__trigger[data-focused="true"], +.hd-collapsible__trigger[data-focus-visible="true"] { + outline: none; +} + +.hd-collapsible__trigger[data-focus-visible="true"] { + box-shadow: var(--hd-focus-ring); +} + +.hd-collapsible__content { + padding: var(--hd-space-1); +} + +.hd-collapsible__content-parent { + height: 0; + overflow: hidden; + transition: height ease 0.15s; +} diff --git a/apps/docs/components/icon/assets/collapse.svg b/apps/docs/components/icon/assets/collapse.svg new file mode 100644 index 000000000..b69aec16d --- /dev/null +++ b/apps/docs/components/icon/assets/collapse.svg @@ -0,0 +1,6 @@ + + + + diff --git a/apps/docs/components/icon/index.tsx b/apps/docs/components/icon/index.tsx index adfbb8eeb..719c7268f 100644 --- a/apps/docs/components/icon/index.tsx +++ b/apps/docs/components/icon/index.tsx @@ -3,6 +3,7 @@ import GithubIcon from "./assets/github.svg"; import ExternalLinkIcon from "./assets/external-link.svg"; import ComponentIcon from "./assets/component.svg"; import TokenIcon from "./assets/tokens.svg"; +import CollapseIcon from "./assets/collapse.svg"; import Icon, { type IconProps } from "./Icon.tsx"; export { @@ -12,5 +13,6 @@ export { ExternalLinkIcon, ComponentIcon, TokenIcon, + CollapseIcon, IconProps }; diff --git a/apps/docs/components/mdx/components.tsx b/apps/docs/components/mdx/components.tsx index 315e761c1..c7eeafaf3 100644 --- a/apps/docs/components/mdx/components.tsx +++ b/apps/docs/components/mdx/components.tsx @@ -17,11 +17,13 @@ import MotionPreview from "@/components/motionPreview/MotionPreview.tsx"; import Footnote from "@/components/footnote/Footnote.tsx"; import type { PreviewComponentProps } from "@/app/ui/components/previewComponent/PreviewComponent.tsx"; import type { MigrateGuideProps } from "@/app/ui/components/migrateGuide/MigrateGuide.tsx"; +import type { PropTableProps } from "@/app/ui/components/propTable/PropTable.tsx"; type HeadingProps = React.DetailedHTMLProps, HTMLHeadingElement>; const PreviewComponent = dynamic(() => import("@/app/ui/components/previewComponent/PreviewComponent.tsx")); const MigrateGuide = dynamic(() => import("@/app/ui/components/migrateGuide/MigrateGuide.tsx")); +const PropTable = dynamic(() => import("@/app/ui/components/propTable/PropTable.tsx")); export const components = { Card, @@ -43,6 +45,9 @@ export const components = { MigrateGuide: (props: MigrateGuideProps) => { return ; }, + PropTable: (props: PropTableProps) => { + return ; + }, h1: (props: HeadingProps) => { return ; }, diff --git a/apps/docs/content/components/button.mdx b/apps/docs/content/components/button.mdx index 7c253f9dc..d7c844de4 100644 --- a/apps/docs/content/components/button.mdx +++ b/apps/docs/content/components/button.mdx @@ -17,6 +17,10 @@ import { Button } from "@hopper-ui/components"; ```tsx showLineNumbers <Button>save</Button> ``` +## Props +The table below contains all types of the props available in title component. + +<PropTable component="Button" /> ## Migration Notes <MigrateGuide src="buttons/docs/migration-notes" /> diff --git a/apps/docs/datas/components/Button.json b/apps/docs/datas/components/Button.json new file mode 100644 index 000000000..1e6a1f252 --- /dev/null +++ b/apps/docs/datas/components/Button.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/buttons/src/Button.tsx","description":"Buttons are used to initialize an action. Button labels express what action will occur when the user interacts with it.\n\n[View Documentation](TODO)","displayName":"Button","methods":[],"props":{"variant":{"defaultValue":null,"description":"The visual style of the button.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\" | \"danger\" | \"upsell\" | \"ghost-primary\" | \"ghost-secondary\" | \"ghost-danger\""}},"size":{"defaultValue":{"value":"\"md\""},"description":"A button can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"fluid":{"defaultValue":null,"description":"Whether or not the button takes up the width of its container.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<boolean>"}},"isLoading":{"defaultValue":null,"description":"","name":"isLoading","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"href":{"defaultValue":null,"description":"A URL to link to. Setting this makes the component render an `a` tag instead of a `button`","name":"href","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link.","name":"target","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"form":{"defaultValue":null,"description":"The <form> element to associate the button with.\nThe value of this attribute must be the id of a <form> in the same document.","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: ButtonRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: ButtonRenderProps) => ReactNode)"}},"isDisabled":{"defaultValue":null,"description":"Whether the button is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\""}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"string"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"type":{"defaultValue":{"value":"'button'"},"description":"The behavior of the button when used in an HTML form.","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"\"button\" | \"submit\" | \"reset\""}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"formAction":{"defaultValue":null,"description":"The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.","name":"formAction","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formEncType":{"defaultValue":null,"description":"Indicates how to encode the form data that is submitted.","name":"formEncType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formMethod":{"defaultValue":null,"description":"Indicates the HTTP method used to submit the form.","name":"formMethod","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formNoValidate":{"defaultValue":null,"description":"Indicates that the form is not to be validated when it is submitted.","name":"formNoValidate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"formTarget":{"defaultValue":null,"description":"Overrides the target attribute of the button's form owner.","name":"formTarget","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"value":{"defaultValue":null,"description":"The value associated with the button's name when it's submitted with the form data.","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: ButtonRenderProps) => string)"}},"name":{"defaultValue":null,"description":"Submitted as a pair with the button's value as part of the form data.","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}},"groups":{"default":{"variant":{"defaultValue":null,"description":"The visual style of the button.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\" | \"danger\" | \"upsell\" | \"ghost-primary\" | \"ghost-secondary\" | \"ghost-danger\""}},"size":{"defaultValue":{"value":"\"md\""},"description":"A button can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"fluid":{"defaultValue":null,"description":"Whether or not the button takes up the width of its container.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<boolean>"}},"isLoading":{"defaultValue":null,"description":"","name":"isLoading","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"href":{"defaultValue":null,"description":"A URL to link to. Setting this makes the component render an `a` tag instead of a `button`","name":"href","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link.","name":"target","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"form":{"defaultValue":null,"description":"The <form> element to associate the button with.\nThe value of this attribute must be the id of a <form> in the same document.","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: ButtonRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: ButtonRenderProps) => ReactNode)"}},"isDisabled":{"defaultValue":null,"description":"Whether the button is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"formAction":{"defaultValue":null,"description":"The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.","name":"formAction","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formEncType":{"defaultValue":null,"description":"Indicates how to encode the form data that is submitted.","name":"formEncType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formMethod":{"defaultValue":null,"description":"Indicates the HTTP method used to submit the form.","name":"formMethod","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formNoValidate":{"defaultValue":null,"description":"Indicates that the form is not to be validated when it is submitted.","name":"formNoValidate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"formTarget":{"defaultValue":null,"description":"Overrides the target attribute of the button's form owner.","name":"formTarget","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"value":{"defaultValue":null,"description":"The value associated with the button's name when it's submitted with the form data.","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: ButtonRenderProps) => string)"}},"name":{"defaultValue":null,"description":"Submitted as a pair with the button's value as part of the form data.","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}},"events":{"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}}},"a11y":{"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\""}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"string"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"type":{"defaultValue":{"value":"'button'"},"description":"The behavior of the button when used in an HTML form.","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"\"button\" | \"submit\" | \"reset\""}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ButtonContext.json b/apps/docs/datas/components/ButtonContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/ButtonContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/ButtonGroup.json b/apps/docs/datas/components/ButtonGroup.json new file mode 100644 index 000000000..45f23c15a --- /dev/null +++ b/apps/docs/datas/components/ButtonGroup.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","description":"ButtonGroup handles the spacing and orientation for a grouping of buttons whose actions are related to each other.\n\n[View Documentation](TODO)","displayName":"ButtonGroup","methods":[],"props":{"orientation":{"defaultValue":{"value":"'horizontal'"},"description":"The axis the ButtonGroup should align with.","name":"orientation","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<Orientation>"}},"isDisabled":{"defaultValue":null,"description":"Whether the Buttons in the ButtonGroup are all disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"boolean"}},"fluid":{"defaultValue":null,"description":"Whether the Buttons in the ButtonGroup are all fluid.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<boolean>"}},"size":{"defaultValue":{"value":"\"md\""},"description":"The size of the buttons in the ButtonGroup.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"wrap":{"defaultValue":{"value":"true"},"description":"Whether elements are forced onto one line or can wrap onto multiple rows.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<boolean>"}},"align":{"defaultValue":{"value":"'start'"},"description":"The alignment of the buttons within the ButtonGroup.","name":"align","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"center\" | \"start\" | \"end\">"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish | \"inherit\" | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ButtonGroupContext.json b/apps/docs/datas/components/ButtonGroupContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/ButtonGroupContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/Checkbox.json b/apps/docs/datas/components/Checkbox.json new file mode 100644 index 000000000..02ce70302 --- /dev/null +++ b/apps/docs/datas/components/Checkbox.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/Checkbox.tsx","description":"The Checkbox component indicates the selection state of an option. It displays either one of three states: checked, unchecked, or indeterminate.\n\n[View Documentation](TODO)","displayName":"Checkbox","methods":[],"props":{"size":{"defaultValue":null,"description":"A checkbox can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/Checkbox.tsx","name":"CheckboxProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/Checkbox.tsx","name":"CheckboxProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: CheckboxRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: CheckboxRenderProps) => ReactNode)"}},"validationBehavior":{"defaultValue":{"value":"'native'"},"description":"Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.","name":"validationBehavior","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"}],"required":false,"type":{"name":"\"native\" | \"aria\""}},"isIndeterminate":{"defaultValue":null,"description":"Indeterminism is presentational only.\nThe indeterminate visual representation remains regardless of user interaction.","name":"isIndeterminate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"CheckboxProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"CheckboxProps"}],"required":false,"type":{"name":"boolean"}},"defaultSelected":{"defaultValue":null,"description":"Whether the element should be selected (uncontrolled).","name":"defaultSelected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"boolean"}},"isSelected":{"defaultValue":null,"description":"Whether the element should be selected (controlled).","name":"isSelected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"boolean"}},"onChange":{"defaultValue":null,"description":"Handler that is called when the element's selection state changes.","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"(isSelected: boolean) => void"}},"value":{"defaultValue":null,"description":"The value of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefvalue).","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"string"}},"isDisabled":{"defaultValue":null,"description":"Whether the input is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"isReadOnly":{"defaultValue":null,"description":"Whether the input can be selected but not changed by the user.","name":"isReadOnly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"isRequired":{"defaultValue":null,"description":"Whether user input is required on the input before form submission.","name":"isRequired","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"isInvalid":{"defaultValue":null,"description":"Whether the input value is invalid.","name":"isInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"validate":{"defaultValue":null,"description":"A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.","name":"validate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"(value: boolean) => true | ValidationError"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"AriaToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"AriaToggleProps"}],"required":false,"type":{"name":"string"}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"}],"required":false,"type":{"name":"string"}},"name":{"defaultValue":null,"description":"The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: CheckboxRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLLabelElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxContext.json b/apps/docs/datas/components/CheckboxContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/CheckboxContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxField.json b/apps/docs/datas/components/CheckboxField.json new file mode 100644 index 000000000..b4bb10a37 --- /dev/null +++ b/apps/docs/datas/components/CheckboxField.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","description":"The Checkbox Field component is a container for a checkbox and a description.\n\n[View Documentation](TODO)","displayName":"CheckboxField","methods":[],"props":{"isDisabled":{"defaultValue":null,"description":"Whether the checkbox field is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"}],"required":false,"type":{"name":"boolean"}},"size":{"defaultValue":null,"description":"A checkbox can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxFieldContext.json b/apps/docs/datas/components/CheckboxFieldContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/CheckboxFieldContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxGroup.json b/apps/docs/datas/components/CheckboxGroup.json new file mode 100644 index 000000000..c407947b7 --- /dev/null +++ b/apps/docs/datas/components/CheckboxGroup.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","description":"The CheckboxGroup component is used to group multiple Checkbox or CheckboxField components together.\n\n[View Documentation](TODO)","displayName":"CheckboxGroup","methods":[],"props":{"orientation":{"defaultValue":null,"description":"A checkbox can be displayed horizontally or vertically.","name":"orientation","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"horizontal\" | \"vertical\">"}},"size":{"defaultValue":null,"description":"A checkbox can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"variant":{"defaultValue":null,"description":"A CheckboxGroup has two variants: borderless and bordered.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"}],"required":false,"type":{"name":"\"borderless\" | \"bordered\""}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: CheckboxGroupRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: CheckboxGroupRenderProps) => ReactNode)"}},"validationBehavior":{"defaultValue":{"value":"'native'"},"description":"Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.","name":"validationBehavior","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"}],"required":false,"type":{"name":"\"native\" | \"aria\""}},"value":{"defaultValue":null,"description":"The current value (controlled).","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"}],"required":false,"type":{"name":"string[]"}},"defaultValue":{"defaultValue":null,"description":"The default value (uncontrolled).","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"}],"required":false,"type":{"name":"string[]"}},"onChange":{"defaultValue":null,"description":"Handler that is called when the value changes.","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"}],"required":false,"type":{"name":"(value: string[]) => void"}},"isDisabled":{"defaultValue":null,"description":"Whether the input is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"isReadOnly":{"defaultValue":null,"description":"Whether the input can be selected but not changed by the user.","name":"isReadOnly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"name":{"defaultValue":null,"description":"The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"}],"required":false,"type":{"name":"string"}},"isRequired":{"defaultValue":null,"description":"Whether user input is required on the input before form submission.","name":"isRequired","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"isInvalid":{"defaultValue":null,"description":"Whether the input value is invalid.","name":"isInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"validate":{"defaultValue":null,"description":"A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.","name":"validate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"(value: string[]) => true | ValidationError"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"}],"required":false,"type":{"name":"string"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: CheckboxGroupRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxGroupContext.json b/apps/docs/datas/components/CheckboxGroupContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/CheckboxGroupContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxList.json b/apps/docs/datas/components/CheckboxList.json new file mode 100644 index 000000000..607657b57 --- /dev/null +++ b/apps/docs/datas/components/CheckboxList.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/CheckboxList.tsx","description":"The Checkbox List component is a container for a group of checkboxes.\n\n[View Documentation](TODO)","displayName":"CheckboxList","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxListContext.json b/apps/docs/datas/components/CheckboxListContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/CheckboxListContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/ClearSlots.json b/apps/docs/datas/components/ClearSlots.json new file mode 100644 index 000000000..63a708509 --- /dev/null +++ b/apps/docs/datas/components/ClearSlots.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","description":"Writing slots in a component can be a bit tricky. This component is a utility that allows you to clear the slots of a component.\n\nFor instance: In a dialog, slots could apply specific styles to a Divider divider between the heading and the content.\nIf someone wanted to make a two column layout in their content and use a Divider, they'd need to do some work to get rid of the class name the dialog applies.\n\nThere are a few reasons why you might want to clear slots:\n- You're trying to make a component that is a container for other components, and you don't want anything set above to affect your content.\n- You're trying to specify a different slot provider inside","displayName":"ClearProviders","methods":[],"props":{"values":{"defaultValue":null,"description":"The list of providers to clear.","name":"values","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","name":"ClearProvidersProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","name":"ClearProvidersProps"}],"required":true,"type":{"name":"Context<ContextValue<unknown, T>>[]"}}}},{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","description":"Most of the time, you won't need to use this component. It's mostly useful for when you're trying to make a component that is a container for other components, and you don't want anything set above to affect your content.","displayName":"ClearContainerSlots","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ErrorMessage.json b/apps/docs/datas/components/ErrorMessage.json new file mode 100644 index 000000000..1fbc9ea6f --- /dev/null +++ b/apps/docs/datas/components/ErrorMessage.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/errorMessage/src/ErrorMessage.tsx","description":"An ErrorMessage displays validation errors for a form field.\n\n[View Documentation](TODO)","displayName":"ErrorMessage","methods":[],"props":{"hideIcon":{"defaultValue":{"value":"true"},"description":"Whether or not to hide the error message icon.","name":"hideIcon","parent":{"fileName":"wl-hopper/packages/components/src/errorMessage/src/ErrorMessage.tsx","name":"ErrorMessageProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/errorMessage/src/ErrorMessage.tsx","name":"ErrorMessageProps"}],"required":false,"type":{"name":"boolean"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: FieldErrorRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: FieldErrorRenderProps) => ReactNode)"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: FieldErrorRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"elementType":{"defaultValue":null,"description":"","name":"elementType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"inline\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"move\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLElement>"}},"size":{"defaultValue":{"value":"\"md\""},"description":"The Typography Type Scale to use.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLSpanElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ErrorMessageContext.json b/apps/docs/datas/components/ErrorMessageContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/ErrorMessageContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/Flex.json b/apps/docs/datas/components/Flex.json new file mode 100644 index 000000000..1e1ef0afd --- /dev/null +++ b/apps/docs/datas/components/Flex.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Flex.tsx","description":"The Flex component is used to create a flex container and provides some shortcuts for the flex properties.\n\n[View Documentation](TODO)","displayName":"Flex","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"inline\" | \"none\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"direction":{"defaultValue":null,"description":"The flex direction of the container. Can be row, column, row-reverse or column-reverse.","name":"direction","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"wrap":{"defaultValue":null,"description":"Whether to wrap the flex items. The value can also be a boolean.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap> | ResponsiveProp<boolean>"}},"basis":{"defaultValue":null,"description":"An alias for the css flex-basis property.","name":"basis","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"grow":{"defaultValue":null,"description":"An alias for the css flex-grow property.","name":"grow","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"shrink":{"defaultValue":null,"description":"An alias for the css flex-shrink property.","name":"shrink","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"inline":{"defaultValue":null,"description":"Whether to display the flex container as an inline element.","name":"inline","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"boolean"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Grid.json b/apps/docs/datas/components/Grid.json new file mode 100644 index 000000000..5be90dc63 --- /dev/null +++ b/apps/docs/datas/components/Grid.json @@ -0,0 +1 @@ +[{"tags":{"param":"count - The number of times to repeat the fragment.\nrepeat - The fragment to repeat."},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Grid.tsx","description":"Can be used to make a repeating fragment of the columns or rows list.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/repeat).","displayName":"Inline","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/HelperMessage.json b/apps/docs/datas/components/HelperMessage.json new file mode 100644 index 000000000..23c4581f6 --- /dev/null +++ b/apps/docs/datas/components/HelperMessage.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/helperMessage/src/HelperMessage.tsx","description":"The HelperMessage component is used to display auxiliary text to guide users in the interface.\n\n[View Documentation](TODO)","displayName":"HelperMessage","methods":[],"props":{"hideIcon":{"defaultValue":{"value":"true"},"description":"Whether or not to hide the helper message icon.","name":"hideIcon","parent":{"fileName":"wl-hopper/packages/components/src/helperMessage/src/HelperMessage.tsx","name":"HelperMessageProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/helperMessage/src/HelperMessage.tsx","name":"HelperMessageProps"}],"required":false,"type":{"name":"boolean"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"elementType":{"defaultValue":null,"description":"","name":"elementType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish | \"inherit\" | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLElement>"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLSpanElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/HelperMessageContext.json b/apps/docs/datas/components/HelperMessageContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/HelperMessageContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/HopperProvider.json b/apps/docs/datas/components/HopperProvider.json new file mode 100644 index 000000000..8024f4c0e --- /dev/null +++ b/apps/docs/datas/components/HopperProvider.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","description":"HopperProvider is required to be rendered at the root of your application. It is responsible for:\n- Adding CSS variables to the document\n- Managing color scheme (light, dark, auto)\n- Optionally adding body styles to the document\n\n[View Documentation](TODO)","displayName":"HopperProvider","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"inline\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"children":{"defaultValue":null,"description":"The children of the component","name":"children","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":true,"type":{"name":"ReactNode"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"locale":{"defaultValue":null,"description":"The The BCP47 language code for the locale.\n@example \"en-US\"","name":"locale","parent":{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"}],"required":false,"type":{"name":"string"}},"navigate":{"defaultValue":null,"description":"Set this up once in the root of your app, and any Hopper component with the href prop will automatically navigate using your router.","name":"navigate","parent":{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"}],"required":false,"type":{"name":"(path: string) => void"}},"withBodyStyle":{"defaultValue":null,"description":"Determines whether the styles should be added to the document's body\nBy default, it is set to `false`. If set to `true`, it will apply additional styling to the document's body.","name":"withBodyStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":false,"type":{"name":"boolean"}},"colorScheme":{"defaultValue":null,"description":"The color scheme to use.","name":"colorScheme","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":true,"type":{"name":"ColorSchemeOrSystem"}},"defaultColorScheme":{"defaultValue":null,"description":"Default color scheme to use when a user preferred color scheme (system) is not available.","name":"defaultColorScheme","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":false,"type":{"name":"ColorScheme"}},"withCssVariables":{"defaultValue":null,"description":"Determines whether token CSS variables should be added to the document's head\nBy default, it is set to `true`, you should not change it unless you want to manage CSS variables via `.css` files","name":"withCssVariables","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":false,"type":{"name":"boolean"}},"unsupportedMatchMediaBreakpoint":{"defaultValue":null,"description":"","name":"unsupportedMatchMediaBreakpoint","parent":{"fileName":"wl-hopper/packages/styled-system/dist/responsive/BreakpointProvider.d.ts","name":"BreakpointProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/responsive/BreakpointProvider.d.ts","name":"BreakpointProviderProps"}],"required":false,"type":{"name":"Breakpoint"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/IconList.json b/apps/docs/datas/components/IconList.json new file mode 100644 index 000000000..b410d7c01 --- /dev/null +++ b/apps/docs/datas/components/IconList.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/IconList/src/IconList.tsx","description":"A component that allows you to render a list of icons\n\n[View Documentation](TODO)","displayName":"IconList","methods":[],"props":{"size":{"defaultValue":null,"description":"The size of the icon.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/IconList/src/IconList.tsx","name":"IconListProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/IconList/src/IconList.tsx","name":"IconListProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\" | \"lg\">"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLSpanElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/IconListContext.json b/apps/docs/datas/components/IconListContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/IconListContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/Inline.json b/apps/docs/datas/components/Inline.json new file mode 100644 index 000000000..ed64d263f --- /dev/null +++ b/apps/docs/datas/components/Inline.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Inline.tsx","description":"The Inline pattern is a layout primitive that can be used to stack elements in the horizontal direction and apply a space between them.\n\n[View Documentation](TODO)","displayName":"Inline","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"inline\" | \"none\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"wrap":{"defaultValue":null,"description":"Whether to wrap the flex items. The value can also be a boolean.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap> | ResponsiveProp<boolean>"}},"basis":{"defaultValue":null,"description":"An alias for the css flex-basis property.","name":"basis","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"grow":{"defaultValue":null,"description":"An alias for the css flex-grow property.","name":"grow","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"shrink":{"defaultValue":null,"description":"An alias for the css flex-shrink property.","name":"shrink","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"inline":{"defaultValue":null,"description":"Whether to display the flex container as an inline element.","name":"inline","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"boolean"}},"reverse":{"defaultValue":null,"description":"Whether or not to reverse the order of the elements.","name":"reverse","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"}],"required":false,"type":{"name":"boolean"}},"alignX":{"defaultValue":null,"description":"An alias for the css justify-content property.","name":"alignX","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"alignY":{"defaultValue":null,"description":"An alias for the css align-items property.","name":"alignY","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Label.json b/apps/docs/datas/components/Label.json new file mode 100644 index 000000000..c62fecc21 --- /dev/null +++ b/apps/docs/datas/components/Label.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Label/src/Label.tsx","description":"A primitive label component matching Hopper's typography type scale.\n\n[View Documentation](TODO)","displayName":"Label","methods":[],"props":{"size":{"defaultValue":{"value":"\"md\""},"description":"The Typography Type Scale to use.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Label/src/Label.tsx","name":"LabelProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Label/src/Label.tsx","name":"LabelProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"form":{"defaultValue":null,"description":"","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"htmlFor":{"defaultValue":null,"description":"","name":"htmlFor","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLLabelElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLLabelElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLLabelElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLLabelElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLLabelElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLLabelElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLLabelElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLLabelElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLLabelElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLLabelElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLLabelElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLLabelElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLLabelElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLLabelElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLLabelElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLLabelElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLLabelElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLLabelElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLLabelElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLLabelElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLLabelElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLLabelElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLLabelElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLLabelElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLLabelElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLLabelElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLLabelElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLLabelElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLLabelElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLLabelElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLLabelElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLLabelElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLLabelElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLLabelElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLLabelElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLLabelElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLLabelElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLLabelElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLLabelElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLLabelElement>"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLLabelElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/LabelContext.json b/apps/docs/datas/components/LabelContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/LabelContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/Link.json b/apps/docs/datas/components/Link.json new file mode 100644 index 000000000..bdd6b5f72 --- /dev/null +++ b/apps/docs/datas/components/Link.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Link/src/Link.tsx","description":"Links allow users to navigate to a different location. They can be presented inline inside a paragraph, as standalone text or as an image.\n\n[View Documentation](TODO)","displayName":"Link","methods":[],"props":{"variant":{"defaultValue":null,"description":"The visual style of the link.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\""}},"size":{"defaultValue":null,"description":"Size of the link.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"isQuiet":{"defaultValue":null,"description":"Whether the link should be displayed with a quiet style.","name":"isQuiet","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"boolean"}},"isExternal":{"defaultValue":null,"description":"Whether the link should open in a new tab.","name":"isExternal","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"boolean"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: LinkRenderProps) => CSSProperties)"}},"isDisabled":{"defaultValue":null,"description":"Whether the link is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-aria+link@3.6.5_react@18.2.0/node_modules/@react-aria/link/dist/types.d.ts","name":"AriaLinkOptions"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-aria+link@3.6.5_react@18.2.0/node_modules/@react-aria/link/dist/types.d.ts","name":"AriaLinkOptions"}],"required":false,"type":{"name":"boolean"}},"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent<Element, Element>) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"href":{"defaultValue":null,"description":"A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).","name":"href","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).","name":"target","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"HTMLAttributeAnchorTarget"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string"}},"download":{"defaultValue":null,"description":"Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).","name":"download","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string | boolean"}},"ping":{"defaultValue":null,"description":"A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).","name":"ping","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string"}},"referrerPolicy":{"defaultValue":null,"description":"How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).","name":"referrerPolicy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"HTMLAttributeReferrerPolicy"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: LinkRenderProps) => ReactNode)"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: LinkRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLAnchorElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/LinkContext.json b/apps/docs/datas/components/LinkContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/LinkContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/SlotProvider.json b/apps/docs/datas/components/SlotProvider.json new file mode 100644 index 000000000..c6934d189 --- /dev/null +++ b/apps/docs/datas/components/SlotProvider.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/SlotProvider.ts","description":"In complex components, you may need to provide many contexts. The SlotProvider component is a utility that makes it\neasier to provide multiple React contexts without manually nesting them.\n This can be achieved by passing pairs of contexts and values as an array to the values prop.\n\n[View Documentation](TODO)","displayName":"SlotProvider","methods":[],"props":{"values":{"defaultValue":null,"description":"","name":"values","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ProviderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ProviderProps"}],"required":true,"type":{"name":"ProviderValues<A, B, C, D, E, F, G, H, I, J, K>"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Spinner.json b/apps/docs/datas/components/Spinner.json new file mode 100644 index 000000000..b3ee9274a --- /dev/null +++ b/apps/docs/datas/components/Spinner.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Spinner/src/Spinner.tsx","description":"A spinner indicates that a part of the product is currently performing a task, and the duration of this process is unknown.\n\n[View Documentation](TODO)","displayName":"Spinner","methods":[],"props":{"size":{"defaultValue":null,"description":"What the Spinner's diameter should be.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Spinner/src/Spinner.tsx","name":"SpinnerProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Spinner/src/Spinner.tsx","name":"SpinnerProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\" | \"lg\">"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/SpinnerContext.json b/apps/docs/datas/components/SpinnerContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/SpinnerContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/Stack.json b/apps/docs/datas/components/Stack.json new file mode 100644 index 000000000..dd5db2f18 --- /dev/null +++ b/apps/docs/datas/components/Stack.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Stack.tsx","description":"The Stack pattern is a layout primitive that can be used to stack elements in the vertical direction and apply a space between them.\n\n[View Documentation](TODO)","displayName":"Stack","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"inline\" | \"none\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLDivElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLDivElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLDivElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLDivElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLDivElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLDivElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLDivElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLDivElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLDivElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLDivElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLDivElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLDivElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLDivElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLDivElement>"}},"wrap":{"defaultValue":null,"description":"Whether to wrap the flex items. The value can also be a boolean.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap> | ResponsiveProp<boolean>"}},"basis":{"defaultValue":null,"description":"An alias for the css flex-basis property.","name":"basis","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"grow":{"defaultValue":null,"description":"An alias for the css flex-grow property.","name":"grow","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"shrink":{"defaultValue":null,"description":"An alias for the css flex-shrink property.","name":"shrink","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"inline":{"defaultValue":null,"description":"Whether to display the flex container as an inline element.","name":"inline","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"boolean"}},"reverse":{"defaultValue":null,"description":"Whether or not to reverse the order of the elements.","name":"reverse","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"}],"required":false,"type":{"name":"boolean"}},"alignX":{"defaultValue":null,"description":"An alias for the css align-items property.","name":"alignX","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignY":{"defaultValue":null,"description":"An alias for the css justify-content property.","name":"alignY","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLDivElement>"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Text.json b/apps/docs/datas/components/Text.json new file mode 100644 index 000000000..5b52d9437 --- /dev/null +++ b/apps/docs/datas/components/Text.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Text/src/Text.tsx","description":"A primitive text component matching Hopper's typography type scale.\n\n[View Documentation](TODO)","displayName":"Text","methods":[],"props":{"size":{"defaultValue":{"value":"\"md\""},"description":"The Typography Type Scale to use.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"elementType":{"defaultValue":null,"description":"","name":"elementType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler<HTMLElement>"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler<HTMLElement>"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler<HTMLElement>"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler<HTMLElement>"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler<HTMLElement>"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler<HTMLElement>"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler<HTMLElement>"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler<HTMLElement>"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler<HTMLElement>"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler<HTMLElement>"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLElement>"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler<HTMLElement>"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLElement>"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler<HTMLElement>"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler<HTMLElement>"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLElement>"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler<HTMLElement>"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignContent>"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignItems>"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AlignSelf>"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<AspectRatio>"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundColorValue>"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundImage>"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundPosition<0 | (string & {})>>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundRepeat>"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BackgroundSize<0 | (string & {})>>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderValue>"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BorderRadiusValue>"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Bottom<0 | (string & {})>>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<BoxShadowValue>"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColorValue>"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ColumnGapValue>"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Content>"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ContentVisibility>"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Cursor>"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Display>"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FillValue>"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Filter>"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Flex<0 | (string & {})>>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexBasis<0 | (string & {})>>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexDirection>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexFlow>"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexGrow>"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexShrink>"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FlexWrap>"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontFamilyValue>"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontSizeValue>"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontStyle>"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<FontWeightValue>"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GapValue>"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Grid>"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridArea>"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoColumnsValue>"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoFlow>"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridAutoRowsValue>"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumn>"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnEnd>"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridColumnStart>"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRow>"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowEnd>"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridRowStart>"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplate>"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateAreasValue>"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateColumnsValue>"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<GridTemplateRowsValue>"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyContent>"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifyItems>"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<JustifySelf>"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Left<0 | (string & {})>>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LetterSpacing<0 | (string & {})>>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<LineHeightValue>"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexMarginValue>"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimpleMarginValue>"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<HeightValue>"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectFit>"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ObjectPosition<0 | (string & {})>>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Opacity>"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Order>"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Outline<0 | (string & {})>>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Overflow>"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowX>"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<OverflowY>"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ComplexPaddingValue>"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<SimplePaddingValue>"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<PointerEvents>"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Position>"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Resize>"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Right<0 | (string & {})>>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<RowGapValue>"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<StrokeValue>"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextAlign | \"justify-all\">"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextDecoration<0 | (string & {})>>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextOverflow>"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TextTransform>"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Top<0 | (string & {})>>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transform>"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformOrigin<0 | (string & {})>>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<TransformStyle>"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Transition<string & {}>>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BackgroundColorValue>"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderValue>"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BorderRadiusValue>"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_BoxShadowValue>"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ColorValue>"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FillValue>"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontFamilyValue>"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontSizeValue>"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_FontWeightValue>"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GapValue>"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoColumnsValue>"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridAutoRowsValue>"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<number>"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateColumnsValue>"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_GridTemplateRowsValue>"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_LineHeightValue>"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexMarginValue>"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimpleMarginValue>"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_HeightValue>"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_ComplexPaddingValue>"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_SimplePaddingValue>"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_RowGapValue>"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_StrokeValue>"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<UNSAFE_WidthValue>"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<VerticalAlign<0 | (string & {})>>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<Visibility>"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WhiteSpace>"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WidthValue>"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WillChange>"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<WordBreak>"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp<ZIndex>"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef<HTMLSpanElement>"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/TextContext.json b/apps/docs/datas/components/TextContext.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/TextContext.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/composeClassnameRenderProps.json b/apps/docs/datas/components/composeClassnameRenderProps.json new file mode 100644 index 000000000..0560b9e77 --- /dev/null +++ b/apps/docs/datas/components/composeClassnameRenderProps.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/composeClassnameRenderProps.ts","description":"Composes classnames for render props in React components using cslx.\nAllows combining a base classname, render prop function, and additional classes.","displayName":"composeClassnameRenderProps","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/cssModule.json b/apps/docs/datas/components/cssModule.json new file mode 100644 index 000000000..7eeb7e837 --- /dev/null +++ b/apps/docs/datas/components/cssModule.json @@ -0,0 +1 @@ +[{"tags":{"param":"cssModules - The CSS modules object to use for classname lookups.","example":"const result = cssModule(styles, 'hop-button', 'lg', 'primary');\n// result = \"hop-button--lg hop-button--primary\""},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/cssModule.ts","description":"Generates CSS module classnames for a given component with modifiers.\nUtilizes the provided CSS modules object and component name to create classnames.","displayName":"cssModule","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/isTextOnlyChildren.json b/apps/docs/datas/components/isTextOnlyChildren.json new file mode 100644 index 000000000..c6ebb80ee --- /dev/null +++ b/apps/docs/datas/components/isTextOnlyChildren.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/isTextOnlyChildren.ts","description":"Determines whether the provided React children consist only of text content.\nThis function unwraps children wrapped in React Fragments.","displayName":"isTextOnlyChildren","methods":[],"props":{"toString":{"defaultValue":{},"description":"Returns a string representation of a string.\nReturns a string representation of an object.\n@param radix Specifies a radix for converting numeric values to strings. This value is only used for numbers.","name":"toString","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"}],"required":false,"type":{"name":"(() => string) | ((radix?: number) => string) | (() => string)"}},"charAt":{"defaultValue":null,"description":"Returns the character at the specified index.\n@param pos The zero-based index of the desired character.","name":"charAt","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(pos: number) => string"}},"charCodeAt":{"defaultValue":null,"description":"Returns the Unicode value of the character at the specified location.\n@param index The zero-based index of the desired character. If there is no character at the specified index, NaN is returned.","name":"charCodeAt","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(index: number) => number"}},"concat":{"defaultValue":null,"description":"Returns a string that contains the concatenation of two or more strings.\n@param strings The strings to append to the end of the string.","name":"concat","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(...strings: string[]) => string"}},"indexOf":{"defaultValue":null,"description":"Returns the position of the first occurrence of a substring.\n@param searchString The substring to search for in the string\n@param position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.","name":"indexOf","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => number"}},"lastIndexOf":{"defaultValue":null,"description":"Returns the last occurrence of a substring in the string.\n@param searchString The substring to search for.\n@param position The index at which to begin searching. If omitted, the search begins at the end of the string.","name":"lastIndexOf","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => number"}},"localeCompare":{"defaultValue":null,"description":"Determines whether two strings are equivalent in the current locale.\nDetermines whether two strings are equivalent in the current or specified locale.\n@param that String to compare to target string\n@param that String to compare to target string\n@param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n@param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.\n@param that String to compare to target string\n@param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n@param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.","name":"localeCompare","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (that: string): number; (that: string, locales?: string | string[], options?: CollatorOptions): number; (that: string, locales?: LocalesArgument, options?: CollatorOptions): number; }"}},"match":{"defaultValue":null,"description":"Matches a string with a regular expression, and returns an array containing the results of that search.\nMatches a string or an object that supports being matched against, and returns an array\ncontaining the results of that search, or null if no matches are found.\n@param regexp A variable name or string literal containing the regular expression pattern and flags.\n@param matcher An object that supports being matched against.","name":"match","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (regexp: string | RegExp): RegExpMatchArray; (matcher: { [Symbol.match](string: string): RegExpMatchArray; }): RegExpMatchArray; }"}},"replace":{"defaultValue":null,"description":"Replaces text in a string, using a regular expression or search string.\nPasses a string and {@linkcode replaceValue} to the `[Symbol.replace]` method on {@linkcode searchValue}. This method is expected to implement its own replacement algorithm.\nReplaces text in a string, using an object that supports replacement within a string.\n@param searchValue A string or regular expression to search for.\n@param replaceValue A string containing the text to replace. When the {@linkcode searchValue } is a `RegExp`, all matches are replaced if the `g` flag is set (or only those matches at the beginning, if the `y` flag is also present). Otherwise, only the first match of {@linkcode searchValue } is replaced.\n@param searchValue A string to search for.\n@param replacer A function that returns the replacement text.\n@param searchValue An object that supports searching for and replacing matches within a string.\n@param replaceValue The replacement text.\n@param searchValue A object can search for and replace matches within a string.\n@param replacer A function that returns the replacement text.","name":"replace","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (searchValue: string | RegExp, replaceValue: string): string; (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string; (searchValue: { ...; }, replaceValue: string): string; (searchValue: { ...; }, replacer: (substring: string, ...args: any[]) => string): string; }"}},"search":{"defaultValue":null,"description":"Finds the first substring match in a regular expression search.\n@param regexp The regular expression pattern and applicable flags.\n@param searcher An object which supports searching within a string.","name":"search","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (regexp: string | RegExp): number; (searcher: { [Symbol.search](string: string): number; }): number; }"}},"slice":{"defaultValue":null,"description":"Returns a section of a string.\n@param start The index to the beginning of the specified portion of stringObj.\n@param end The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\nIf this value is not specified, the substring continues to the end of stringObj.","name":"slice","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(start?: number, end?: number) => string"}},"split":{"defaultValue":null,"description":"Split a string into substrings using the specified separator and return them as an array.\n@param separator A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.\n@param limit A value used to limit the number of elements returned in the array.\n@param splitter An object that can split a string.\n@param limit A value used to limit the number of elements returned in the array.","name":"split","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (separator: string | RegExp, limit?: number): string[]; (splitter: { [Symbol.split](string: string, limit?: number): string[]; }, limit?: number): string[]; }"}},"substring":{"defaultValue":null,"description":"Returns the substring at the specified location within a String object.\n@param start The zero-based index number indicating the beginning of the substring.\n@param end Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\nIf end is omitted, the characters from start through the end of the original string are returned.","name":"substring","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(start: number, end?: number) => string"}},"toLowerCase":{"defaultValue":null,"description":"Converts all the alphabetic characters in a string to lowercase.","name":"toLowerCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"toLocaleLowerCase":{"defaultValue":null,"description":"Converts all alphabetic characters to lowercase, taking into account the host environment's current locale.","name":"toLocaleLowerCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (locales?: string | string[]): string; (locales?: LocalesArgument): string; }"}},"toUpperCase":{"defaultValue":null,"description":"Converts all the alphabetic characters in a string to uppercase.","name":"toUpperCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"toLocaleUpperCase":{"defaultValue":null,"description":"Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale.","name":"toLocaleUpperCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (locales?: string | string[]): string; (locales?: LocalesArgument): string; }"}},"trim":{"defaultValue":null,"description":"Removes the leading and trailing white space and line terminator characters from a string.","name":"trim","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"length":{"defaultValue":null,"description":"Returns the length of a String object.","name":"length","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"number"}},"substr":{"defaultValue":null,"description":"Gets a substring beginning at the specified location and having the specified length.\n@deprecated A legacy feature for browser compatibility\n@param from The starting position of the desired substring. The index of the first character in the string is zero.\n@param length The number of characters to include in the returned substring.","name":"substr","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(from: number, length?: number) => string"}},"valueOf":{"defaultValue":{},"description":"Returns the primitive value of the specified object.","name":"valueOf","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Boolean"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"}],"required":false,"type":{"name":"(() => string) | (() => number) | (() => boolean) | (() => Object)"}},"codePointAt":{"defaultValue":null,"description":"Returns a nonnegative integer Number less than 1114112 (0x110000) that is the code point\nvalue of the UTF-16 encoded code point starting at the string element at position pos in\nthe String resulting from converting this object to a String.\nIf there is no element at that position, the result is undefined.\nIf a valid UTF-16 surrogate pair does not begin at pos, the result is the code unit at pos.","name":"codePointAt","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(pos: number) => number"}},"includes":{"defaultValue":null,"description":"Returns true if searchString appears as a substring of the result of converting this\nobject to a String, at one or more positions that are\ngreater than or equal to position; otherwise, returns false.\n@param searchString search string\n@param position If position is undefined, 0 is assumed, so as to search all of the String.","name":"includes","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => boolean"}},"endsWith":{"defaultValue":null,"description":"Returns true if the sequence of elements of searchString converted to a String is the\nsame as the corresponding elements of this object (converted to a String) starting at\nendPosition – length(this). Otherwise returns false.","name":"endsWith","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, endPosition?: number) => boolean"}},"normalize":{"defaultValue":null,"description":"Returns the String value result of normalizing the string into the normalization form\nnamed by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.\n@param form Applicable values: \"NFC\", \"NFD\", \"NFKC\", or \"NFKD\", If not specified default\nis \"NFC\"\n@param form Applicable values: \"NFC\", \"NFD\", \"NFKC\", or \"NFKD\", If not specified default\nis \"NFC\"","name":"normalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"{ (form: \"NFC\" | \"NFD\" | \"NFKC\" | \"NFKD\"): string; (form?: string): string; }"}},"repeat":{"defaultValue":null,"description":"Returns a String value that is made from count copies appended together. If count is 0,\nthe empty string is returned.\n@param count number of copies to append","name":"repeat","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(count: number) => string"}},"startsWith":{"defaultValue":null,"description":"Returns true if the sequence of elements of searchString converted to a String is the\nsame as the corresponding elements of this object (converted to a String) starting at\nposition. Otherwise returns false.","name":"startsWith","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => boolean"}},"anchor":{"defaultValue":null,"description":"Returns an `<a>` HTML anchor element and sets the name attribute to the text value\n@deprecated A legacy feature for browser compatibility\n@param name","name":"anchor","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(name: string) => string"}},"big":{"defaultValue":null,"description":"Returns a `<big>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"big","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"blink":{"defaultValue":null,"description":"Returns a `<blink>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"blink","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"bold":{"defaultValue":null,"description":"Returns a `<b>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"bold","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"fixed":{"defaultValue":null,"description":"Returns a `<tt>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"fixed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"fontcolor":{"defaultValue":null,"description":"Returns a `<font>` HTML element and sets the color attribute value\n@deprecated A legacy feature for browser compatibility","name":"fontcolor","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(color: string) => string"}},"fontsize":{"defaultValue":null,"description":"Returns a `<font>` HTML element and sets the size attribute value\n@deprecated A legacy feature for browser compatibility\n@deprecated A legacy feature for browser compatibility","name":"fontsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"{ (size: number): string; (size: string): string; }"}},"italics":{"defaultValue":null,"description":"Returns an `<i>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"italics","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"link":{"defaultValue":null,"description":"Returns an `<a>` HTML element and sets the href attribute value\n@deprecated A legacy feature for browser compatibility","name":"link","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(url: string) => string"}},"small":{"defaultValue":null,"description":"Returns a `<small>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"small","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"strike":{"defaultValue":null,"description":"Returns a `<strike>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"strike","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"sub":{"defaultValue":null,"description":"Returns a `<sub>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"sub","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"sup":{"defaultValue":null,"description":"Returns a `<sup>` HTML element\n@deprecated A legacy feature for browser compatibility","name":"sup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"padStart":{"defaultValue":null,"description":"Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.\nThe padding is applied from the start (left) of the current string.\n@param maxLength The length of the resulting string once the current string has been padded.\nIf this parameter is smaller than the current string's length, the current string will be returned as it is.\n@param fillString The string to pad the current string with.\nIf this string is too long, it will be truncated and the left-most part will be applied.\nThe default value for this parameter is \" \" (U+0020).","name":"padStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"}],"required":true,"type":{"name":"(maxLength: number, fillString?: string) => string"}},"padEnd":{"defaultValue":null,"description":"Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.\nThe padding is applied from the end (right) of the current string.\n@param maxLength The length of the resulting string once the current string has been padded.\nIf this parameter is smaller than the current string's length, the current string will be returned as it is.\n@param fillString The string to pad the current string with.\nIf this string is too long, it will be truncated and the left-most part will be applied.\nThe default value for this parameter is \" \" (U+0020).","name":"padEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"}],"required":true,"type":{"name":"(maxLength: number, fillString?: string) => string"}},"trimEnd":{"defaultValue":null,"description":"Removes the trailing white space and line terminator characters from a string.","name":"trimEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"trimStart":{"defaultValue":null,"description":"Removes the leading white space and line terminator characters from a string.","name":"trimStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"trimLeft":{"defaultValue":null,"description":"Removes the leading white space and line terminator characters from a string.\n@deprecated A legacy feature for browser compatibility. Use `trimStart` instead","name":"trimLeft","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"trimRight":{"defaultValue":null,"description":"Removes the trailing white space and line terminator characters from a string.\n@deprecated A legacy feature for browser compatibility. Use `trimEnd` instead","name":"trimRight","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"matchAll":{"defaultValue":null,"description":"Matches a string with a regular expression, and returns an iterable of matches\ncontaining the results of that search.\n@param regexp A variable name or string literal containing the regular expression pattern and flags.","name":"matchAll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"(regexp: RegExp) => IterableIterator<RegExpExecArray>"}},"replaceAll":{"defaultValue":null,"description":"Replace all instances of a substring in a string, using a regular expression or search string.\n@param searchValue A string to search for.\n@param replaceValue A string containing the text to replace for every successful match of searchValue in this string.\n@param searchValue A string to search for.\n@param replacer A function that returns the replacement text.","name":"replaceAll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (searchValue: string | RegExp, replaceValue: string): string; (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string; }"}},"at":{"defaultValue":null,"description":"Returns a new String consisting of the single UTF-16 code unit located at the specified index.\n@param index The zero-based index of the desired code unit. A negative index will count back from the last item.","name":"at","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.string.d.ts","name":"String"}],"required":true,"type":{"name":"(index: number) => string"}},"__@iterator@82146":{"defaultValue":null,"description":"Iterator","name":"__@iterator@82146","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","name":"Iterable"}],"required":true,"type":{"name":"(() => IterableIterator<string>) | (() => Iterator<ReactNode, any, undefined>)"}},"toFixed":{"defaultValue":null,"description":"Returns a string representing a number in fixed-point notation.\n@param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.","name":"toFixed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"}],"required":true,"type":{"name":"(fractionDigits?: number) => string"}},"toExponential":{"defaultValue":null,"description":"Returns a string containing a number represented in exponential notation.\n@param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.","name":"toExponential","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"}],"required":true,"type":{"name":"(fractionDigits?: number) => string"}},"toPrecision":{"defaultValue":null,"description":"Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.\n@param precision Number of significant digits. Must be in the range 1 - 21, inclusive.","name":"toPrecision","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"}],"required":true,"type":{"name":"(precision?: number) => string"}},"toLocaleString":{"defaultValue":{},"description":"Returns a date converted to a string using the current locale.\nConverts a number to a string by using the current or specified locale.\n@param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n@param options An object that contains one or more properties that specify comparison options.\n@param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n@param options An object that contains one or more properties that specify comparison options.","name":"toLocaleString","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.number.d.ts","name":"Number"}],"required":false,"type":{"name":"(() => string) | { (locales?: string | string[], options?: NumberFormatOptions): string; (locales?: LocalesArgument, options?: NumberFormatOptions): string; }"}},"type":{"defaultValue":null,"description":"","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"}],"required":true,"type":{"name":"string | JSXElementConstructor<any>"}},"props":{"defaultValue":null,"description":"","name":"props","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"}],"required":true,"type":{"name":"any"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"}],"required":true,"type":{"name":"string"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/sizeAdapter.json b/apps/docs/datas/components/sizeAdapter.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/sizeAdapter.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/types.json b/apps/docs/datas/components/types.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/apps/docs/datas/components/types.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/apps/docs/datas/components/useLocalizedString.json b/apps/docs/datas/components/useLocalizedString.json new file mode 100644 index 000000000..7fbf7f81c --- /dev/null +++ b/apps/docs/datas/components/useLocalizedString.json @@ -0,0 +1 @@ +[{"tags":{"internationalized":"/string-formatter\nis running in our build to support that."},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/intl/src/useLocalizedString.tsx","description":"This hook is used to get the localized string formatter.\nIt uses the resources from the component package.\n\nThis does not support complex string formatting at the moment. We would need to make sur","displayName":"useLocalizedString","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/useRenderProps.json b/apps/docs/datas/components/useRenderProps.json new file mode 100644 index 000000000..5431fc75f --- /dev/null +++ b/apps/docs/datas/components/useRenderProps.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/useRenderProps.ts","description":"Taken from https://github.com/adobe/react-spectrum/blob/main/packages/react-aria-components/src/utils.tsx","displayName":"useRenderProps","methods":[],"props":{"values":{"defaultValue":null,"description":"","name":"values","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"}],"required":true,"type":{"name":"T"}},"defaultChildren":{"defaultValue":null,"description":"","name":"defaultChildren","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"}],"required":false,"type":{"name":"ReactNode"}},"defaultClassName":{"defaultValue":null,"description":"","name":"defaultClassName","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"}],"required":false,"type":{"name":"string"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: T) => ReactNode)"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: T) => string)"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: T) => CSSProperties)"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/useSlot.json b/apps/docs/datas/components/useSlot.json new file mode 100644 index 000000000..bf382fab9 --- /dev/null +++ b/apps/docs/datas/components/useSlot.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/useSlot.ts","description":"Taken from https://github.com/adobe/react-spectrum/blob/main/packages/react-aria-components/src/utils.tsx","displayName":"useSlot","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/package.json b/apps/docs/package.json index 7c0437b15..4072d5280 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -11,24 +11,25 @@ "lint": "next lint", "lint:types": "tsc --noEmit", "storybook": "storybook dev -p 6010", - "build:storybook": "storybook build" + "build:storybook": "storybook build", + "build:componentData": "tsx scripts/generateComponentData.mts" }, "dependencies": { - "clsx": "2.1.0", - "contentlayer": "0.3.4", - "next": "14.1.4", - "next-contentlayer": "0.3.4", - "next-mdx-remote": "^4.4.1", - "react": "18.2.0", - "react-aria-components": "1.1.1", - "react-dom": "18.2.0", - "react-toggle": "4.1.3", - "rehype-parse": "^9.0.0", - "rehype-pretty-code": "0.13.0", - "rehype-react": "^8.0.0", - "unified": "11.0.4", - "unist-util-visit": "5.0.0" - }, + "clsx": "2.1.0", + "contentlayer": "^0.3.4", + "next": "14.1.4", + "next-contentlayer": "0.3.4", + "next-mdx-remote": "^4.4.1", + "react": "18.2.0", + "react-aria-components": "1.1.1", + "react-dom": "18.2.0", + "react-toggle": "4.1.3", + "rehype-parse": "^9.0.0", + "rehype-pretty-code": "0.13.0", + "rehype-react": "^8.0.0", + "unified": "11.0.4", + "unist-util-visit": "5.0.0" + }, "devDependencies": { "@codesandbox/sandpack-react": "^2.13.5", "@hopper-ui/components": "workspace:*", @@ -47,6 +48,9 @@ "eslint": "8.57.0", "eslint-config-next": "14.1.4", "eslint-plugin-storybook": "0.8.0", + "react-docgen": "^7.0.3", + "react-docgen-typescript": "^2.2.2", + "shiki": "^1.3.0", "storybook": "8.0.2", "tsconfig-paths-webpack-plugin": "4.1.0", "typescript": "5.4.2" diff --git a/apps/docs/scripts/generateComponentData.mts b/apps/docs/scripts/generateComponentData.mts new file mode 100644 index 000000000..0339aff7d --- /dev/null +++ b/apps/docs/scripts/generateComponentData.mts @@ -0,0 +1,146 @@ +import fs from "fs"; +import path from "path"; +import docgenTs, {type ComponentDoc, PropItem} from "react-docgen-typescript"; + +interface ComponentData { + name: string; + filePath: string; +} + +interface Group { + [key: string]: PropItem; +} + +type Groups = { [key: string]: Group } + +type GroupsConfig = { + [key: string]: string; +} + +export interface ComponentDocWithGroups extends ComponentDoc { + groups: Groups; +} + +const PACKAGES = path.join(process.cwd(), "..", "..", "packages", "components", "src"); +const COMPONENT_DATA = path.join(process.cwd(), "datas", "components"); + +const tsConfigParser = docgenTs.withDefaultConfig({ + propFilter: (prop) => { + // Remove props from StyledSystemProps + return prop?.parent?.name !== "StyledSystemProps"; + } +}); + +async function writeFile(filename: string, data: ComponentDocWithGroups[]) { + if (!fs.existsSync(COMPONENT_DATA)) { + fs.mkdirSync(COMPONENT_DATA) + } + + fs.writeFile(`${COMPONENT_DATA}/${filename}.json`, JSON.stringify(data), function (err) { + if (err) { + console.error(err) + throw err; + } + console.log(`${filename} api is created!`) + }) +} + +function getComponentName(filePath: string) { + return path.basename(filePath, path.extname(filePath)); +} + +function getFormattedData(data: ComponentDoc[]): ComponentDocWithGroups[] { + // Define the groups and their corresponding terms + + const groupsConfig: GroupsConfig = { + events: "Events", + a11y: 'Aria', + // Add more groups here as needed + }; + + return data.map(component => { + // Initialize the groups + const groups: Groups = { + default: {}, + ...Object.keys(groupsConfig).reduce((acc, group) => ({...acc, [group]: {}}), {}), + }; + + Object.entries(component.props).forEach(([key, prop]) => { + let added = false; + + // Check each group to see if the prop should be added to it + Object.entries(groupsConfig).forEach(([group, term]) => { + if (prop.parent?.name.includes(term)) { + groups[group][key] = prop; + added = true; + } + }); + + // If the prop wasn't added to any group, add it to the default group + if (!added) { + groups.default[key] = prop; + } + }); + + return { + ...component, + groups + }; + }) +} + +async function generateComponentList(source: string): Promise<(ComponentData | undefined)[]> { + const subdirs = fs.readdirSync(source); + const files = await Promise.all(subdirs.map(async (subdir) => { + const res = path.resolve(source, subdir); + + // Checks if the path corresponds to a directory + if (fs.statSync(res).isDirectory()) { + return generateComponentList(res); + } + + // Checks whether the file is in the docs or tests directory + if (/\/(docs|tests)\/|index\.ts$/.test(res)) { + return; + } + + // Checks whether the file is a .ts or .tsx file + if (/\.tsx?$/.test(res)) { + const name = getComponentName(res); + return {name, filePath: res}; + } + })); + + return files.flat().filter(Boolean) as ComponentData[] +} + +async function generateComponentData() { + console.log('Start api generation for components'); + + // const components = await generateComponentList(PACKAGES); + // Data for the tests only + const components = [{ + name: "Button", + filePath: `${PACKAGES}/buttons/src/Button.tsx` + }] + + if (!components.length) { + console.error('No components found'); + return; + } + + for (const component of components) { + if (component) { + + const data = tsConfigParser.parse(component.filePath); + const {name} = component; + const formattedData = getFormattedData(data); + + await writeFile(name, formattedData); + } + } + + return; +} + +generateComponentData().then(() => console.log('🎉 Success')).catch(err => console.error(err)); diff --git a/packages/components/src/buttons/src/Button.tsx b/packages/components/src/buttons/src/Button.tsx index ae4845b41..4a057ddc3 100644 --- a/packages/components/src/buttons/src/Button.tsx +++ b/packages/components/src/buttons/src/Button.tsx @@ -1,15 +1,33 @@ import { IconContext } from "@hopper-ui/icons"; -import { type StyledComponentProps, useStyledSystem, type ResponsiveProp, useResponsiveValue } from "@hopper-ui/styled-system"; +import { + type StyledComponentProps, + useStyledSystem, + type ResponsiveProp, + useResponsiveValue +} from "@hopper-ui/styled-system"; import { useRouter, shouldClientNavigate, filterDOMProps, chain } from "@react-aria/utils"; import { type ForwardedRef, forwardRef, type MouseEvent, type MutableRefObject } from "react"; import { useButton, useHover, useFocusRing, mergeProps } from "react-aria"; -import { useContextProps, composeRenderProps, type ButtonProps as RACButtonProps, type ButtonRenderProps, ButtonContext as RACButtonContext } from "react-aria-components"; +import { + useContextProps, + composeRenderProps, + type ButtonProps as RACButtonProps, + type ButtonRenderProps, + ButtonContext as RACButtonContext +} from "react-aria-components"; import { IconListContext } from "../../IconList/index.ts"; import { useLocalizedString } from "../../intl/index.ts"; import { Spinner } from "../../Spinner/index.ts"; import { TextContext, Text } from "../../Text/index.ts"; -import { composeClassnameRenderProps, SlotProvider, cssModule, useSlot, isTextOnlyChildren, useRenderProps } from "../../utils/index.ts"; +import { + composeClassnameRenderProps, + SlotProvider, + cssModule, + useSlot, + isTextOnlyChildren, + useRenderProps +} from "../../utils/index.ts"; import { ButtonContext, type ButtonContextValue } from "./ButtonContext.ts"; @@ -28,6 +46,7 @@ export interface ButtonProps extends StyledComponentProps<RACButtonProps> { /** * A button can vary in size. + * @default "md" */ size?: ResponsiveProp<"sm" | "md">; @@ -37,7 +56,7 @@ export interface ButtonProps extends StyledComponentProps<RACButtonProps> { fluid?: ResponsiveProp<boolean>; // A button can show a loading indicator. - isLoading?:boolean; + isLoading?: boolean; /** A URL to link to. Setting this makes the component render an `a` tag instead of a `button` */ href?: string; @@ -70,7 +89,13 @@ function useSimulatedRACButton(props: ButtonProps, ref: MutableRefObject<HTMLEle isDisabled: props.isDisabled || props.isLoading }, ref); - const state: ButtonRenderProps = { isFocused, isFocusVisible, isHovered, isPressed, isDisabled: props.isDisabled || false }; + const state: ButtonRenderProps = { + isFocused, + isFocusVisible, + isHovered, + isPressed, + isDisabled: props.isDisabled || false + }; const mergedProps = { ...mergeProps(buttonProps, focusProps, hoverProps), diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3795dd864..ee3854cbc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -138,7 +138,7 @@ importers: specifier: 2.1.0 version: 2.1.0 contentlayer: - specifier: 0.3.4 + specifier: ^0.3.4 version: 0.3.4(esbuild@0.20.2) next: specifier: 14.1.4 @@ -166,7 +166,7 @@ importers: version: 9.0.0 rehype-pretty-code: specifier: 0.13.0 - version: 0.13.0(shiki@1.2.0) + version: 0.13.0(shiki@1.3.0) rehype-react: specifier: ^8.0.0 version: 8.0.0 @@ -228,6 +228,15 @@ importers: eslint-plugin-storybook: specifier: 0.8.0 version: 0.8.0(eslint@8.57.0)(typescript@5.4.2) + react-docgen: + specifier: ^7.0.3 + version: 7.0.3 + react-docgen-typescript: + specifier: ^2.2.2 + version: 2.2.2(typescript@5.4.2) + shiki: + specifier: ^1.3.0 + version: 1.3.0 storybook: specifier: 8.0.2 version: 8.0.2(react-dom@18.2.0)(react@18.2.0) @@ -618,7 +627,6 @@ packages: /@aw-web-design/x-default-browser@1.4.126: resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} - hasBin: true dependencies: default-browser-id: 3.0.0 dev: true @@ -2001,7 +2009,6 @@ packages: /@changesets/cli@2.27.1: resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} - hasBin: true dependencies: '@babel/runtime': 7.24.1 '@changesets/apply-release-plan': 7.0.0 @@ -2402,10 +2409,6 @@ packages: peerDependencies: '@effect-ts/otel-node': '*' peerDependenciesMeta: - '@effect-ts/core': - optional: true - '@effect-ts/otel': - optional: true '@effect-ts/otel-node': optional: true dependencies: @@ -3036,7 +3039,6 @@ packages: /@grpc/proto-loader@0.7.10: resolution: {integrity: sha512-CAqDfoaQ8ykFd9zqBDn4k6iWT9loLAlc2ETmDFS9JCD70gDcnA4L3AFEo2iV7KyAtAAHFW9ftq1Fz+Vsgq80RQ==} engines: {node: '>=6'} - hasBin: true dependencies: lodash.camelcase: 4.3.0 long: 5.2.3 @@ -3720,7 +3722,6 @@ packages: /@netlify/esbuild@0.14.39: resolution: {integrity: sha512-C3xpwdT2xw6SnSb+hLQoxjtikAKiz6BjQjzlIaysHDpGbmIcmUHZ/X+dyLtCqAvf15WNK5GSBZYOlpgcOE0WZA==} engines: {node: '>=12'} - hasBin: true requiresBuild: true optionalDependencies: '@netlify/esbuild-android-64': 0.14.39 @@ -5733,9 +5734,8 @@ packages: resolution: {integrity: sha512-0HejFckBN2W+ucM6cUOlwsByTKt9/+0tWhqUffNIcHqCXkthY/mZ7AuYPK/2IIaGWhdl0h+tICDO0ssLMd6XMQ==} dev: true - /@shikijs/core@1.2.0: - resolution: {integrity: sha512-OlFvx+nyr5C8zpcMBnSGir0YPD6K11uYhouqhNmm1qLiis4GA7SsGtu07r9gKS9omks8RtQqHrJL4S+lqWK01A==} - dev: false + /@shikijs/core@1.3.0: + resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==} /@sideway/address@4.1.5: resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} @@ -6076,7 +6076,6 @@ packages: /@storybook/cli@8.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Yo1p3LpPmTLbqCwvXy0h13sRFDqY7sNPi2RjBWrJ38URRTw4cpcmw1aE9APb2fSgEhVOxpZWEwG9rFVfika4gg==} - hasBin: true dependencies: '@babel/core': 7.24.3 '@babel/types': 7.24.0 @@ -6667,7 +6666,6 @@ packages: /@storybook/test-runner@0.17.0(@types/node@20.11.30)(ts-node@10.9.2): resolution: {integrity: sha512-4mt822j0VF1H/c0//OWSST9eWV0wboncJUQ+hBm5N4wmyuObvwsiMh4pmgXw8Y82wF7g1RIofjEQqAGLa7NjgQ==} engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true dependencies: '@babel/core': 7.24.3 '@babel/generator': 7.24.1 @@ -8108,7 +8106,6 @@ packages: /abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead dev: true /abbrev@2.0.0: @@ -8174,13 +8171,11 @@ packages: /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} - hasBin: true dev: true /acorn@8.11.3: resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} engines: {node: '>=0.4.0'} - hasBin: true /address@1.2.2: resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} @@ -8292,7 +8287,6 @@ packages: /ansi-html-community@0.0.8: resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} engines: {'0': node >= 0.8.0} - hasBin: true dev: true /ansi-regex@5.0.1: @@ -8540,7 +8534,6 @@ packages: /astring@1.8.6: resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true dev: false /async@3.2.5: @@ -8964,7 +8957,6 @@ packages: /browserslist@4.23.0: resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true dependencies: caniuse-lite: 1.0.30001599 electron-to-chromium: 1.4.711 @@ -9597,7 +9589,6 @@ packages: /contentlayer@0.3.4(esbuild@0.20.2): resolution: {integrity: sha512-FYDdTUFaN4yqep0waswrhcXjmMJnPD5iXDTtxcUCGdklfuIrXM2xLx51xl748cHmGA6IsC+27YZFxU6Ym13QIA==} engines: {node: '>=14.18'} - hasBin: true requiresBuild: true dependencies: '@contentlayer/cli': 0.3.4(esbuild@0.20.2) @@ -9635,7 +9626,6 @@ packages: /copyfiles@2.4.1: resolution: {integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==} - hasBin: true dependencies: glob: 7.2.3 minimatch: 3.1.2 @@ -9734,7 +9724,6 @@ packages: /create-jest@29.7.0(@types/node@20.11.30)(ts-node@10.9.2): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 @@ -9761,7 +9750,6 @@ packages: /cross-env@7.0.3: resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} - hasBin: true dependencies: cross-spawn: 7.0.3 dev: true @@ -9901,7 +9889,6 @@ packages: /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} - hasBin: true dev: true /cssfilter@0.0.10: @@ -10269,7 +10256,6 @@ packages: /detect-libc@1.0.3: resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} engines: {node: '>=0.10'} - hasBin: true dev: true /detect-libc@2.0.3: @@ -10291,7 +10277,6 @@ packages: /detect-port@1.5.1: resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} - hasBin: true dependencies: address: 1.2.2 debug: 4.3.4 @@ -10341,7 +10326,6 @@ packages: /direction@2.0.1: resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} - hasBin: true dev: true /doctrine@2.1.0: @@ -10411,7 +10395,6 @@ packages: /domexception@4.0.0: resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead dependencies: webidl-conversions: 7.0.0 dev: true @@ -10496,7 +10479,6 @@ packages: /ejs@3.1.9: resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} engines: {node: '>=0.10.0'} - hasBin: true dependencies: jake: 10.8.7 dev: true @@ -10592,7 +10574,6 @@ packages: /envinfo@7.11.1: resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==} engines: {node: '>=4'} - hasBin: true dev: true /error-ex@1.3.2: @@ -10789,7 +10770,6 @@ packages: /esbuild@0.19.12: resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} engines: {node: '>=12'} - hasBin: true requiresBuild: true optionalDependencies: '@esbuild/aix-ppc64': 0.19.12 @@ -10820,7 +10800,6 @@ packages: /esbuild@0.20.2: resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} engines: {node: '>=12'} - hasBin: true requiresBuild: true optionalDependencies: '@esbuild/aix-ppc64': 0.20.2 @@ -10880,7 +10859,6 @@ packages: /escodegen@2.1.0: resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} engines: {node: '>=6.0'} - hasBin: true dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -11248,7 +11226,6 @@ packages: /eslint@8.57.0: resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@eslint-community/regexpp': 4.10.0 @@ -11314,7 +11291,6 @@ packages: /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} - hasBin: true /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} @@ -11750,7 +11726,6 @@ packages: /find-process@1.4.7: resolution: {integrity: sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==} - hasBin: true dependencies: chalk: 4.1.2 commander: 5.1.0 @@ -12126,7 +12101,6 @@ packages: /giget@1.2.1: resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==} - hasBin: true dependencies: citty: 0.1.6 consola: 3.2.3 @@ -12170,7 +12144,6 @@ packages: /glob@10.3.10: resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} engines: {node: '>=16 || 14 >=14.17'} - hasBin: true dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 @@ -12340,7 +12313,6 @@ packages: /gunzip-maybe@1.4.2: resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} - hasBin: true dependencies: browserify-zlib: 0.1.4 is-deflate: 1.0.0 @@ -12370,7 +12342,6 @@ packages: /handlebars@4.7.8: resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} engines: {node: '>=0.4.7'} - hasBin: true dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -12678,7 +12649,6 @@ packages: /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true dev: true /header-case@2.0.4: @@ -12725,7 +12695,6 @@ packages: /html-minifier-terser@6.1.0: resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} engines: {node: '>=12'} - hasBin: true dependencies: camel-case: 4.1.2 clean-css: 5.3.3 @@ -12887,7 +12856,6 @@ packages: /image-size@1.1.1: resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} engines: {node: '>=16.x'} - hasBin: true dependencies: queue: 6.0.2 dev: true @@ -12908,7 +12876,6 @@ packages: /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} engines: {node: '>=8'} - hasBin: true dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 @@ -13041,7 +13008,6 @@ packages: /ipx@1.3.1: resolution: {integrity: sha512-hWRLXdMDOz2q81T2x9lowFtAGO3E5b2HtC8xOOBTrlnxygHNaVrZqJ5c1P3T7tDkC3oCocYRRz0VBffvJKeQlw==} - hasBin: true dependencies: '@fastify/accept-negotiator': 1.1.0 consola: 3.2.3 @@ -13190,13 +13156,11 @@ packages: /is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} - hasBin: true dev: true /is-docker@3.0.0: resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true dev: true /is-empty@1.2.0: @@ -13255,7 +13219,6 @@ packages: /is-inside-container@1.0.0: resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} engines: {node: '>=14.16'} - hasBin: true dependencies: is-docker: 3.0.0 dev: true @@ -13643,7 +13606,6 @@ packages: /jake@10.8.7: resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} engines: {node: '>=10'} - hasBin: true dependencies: async: 3.2.5 chalk: 4.1.2 @@ -14178,7 +14140,6 @@ packages: /jiti@1.21.0: resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true dev: true /joi@17.12.2: @@ -14201,14 +14162,12 @@ packages: /js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true dependencies: argparse: 2.0.1 @@ -14328,7 +14287,6 @@ packages: /json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true dependencies: minimist: 1.2.8 dev: true @@ -14336,7 +14294,6 @@ packages: /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} - hasBin: true /jsonc-eslint-parser@2.4.0: resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} @@ -14477,7 +14434,6 @@ packages: /listhen@1.7.2: resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==} - hasBin: true dependencies: '@parcel/watcher': 2.4.1 '@parcel/watcher-wasm': 2.4.1 @@ -14642,7 +14598,6 @@ packages: /loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true dependencies: js-tokens: 4.0.0 @@ -14682,7 +14637,6 @@ packages: /lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true dev: true /magic-string@0.30.8: @@ -15789,7 +15743,6 @@ packages: /miller-rabin@4.0.1: resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} - hasBin: true dependencies: bn.js: 4.12.0 brorand: 1.1.0 @@ -15810,13 +15763,11 @@ packages: /mime@1.6.0: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} engines: {node: '>=4'} - hasBin: true dev: true /mime@3.0.0: resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} engines: {node: '>=10.0.0'} - hasBin: true dev: true /mimic-fn@2.1.0: @@ -15921,13 +15872,11 @@ packages: /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} - hasBin: true dev: true /mkdirp@3.0.1: resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} engines: {node: '>=10'} - hasBin: true dev: true /mlly@1.6.1: @@ -15967,7 +15916,6 @@ packages: /mustache@4.2.0: resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} - hasBin: true dev: true /mute-stream@1.0.0: @@ -15986,7 +15934,6 @@ packages: /nanoid@3.3.7: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true /napi-build-utils@1.0.2: resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} @@ -16240,7 +16187,6 @@ packages: /nopt@7.2.0: resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true dependencies: abbrev: 2.0.0 dev: true @@ -16294,7 +16240,6 @@ packages: /nyc@15.1.0: resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} engines: {node: '>=8.9'} - hasBin: true dependencies: '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 @@ -16330,7 +16275,6 @@ packages: /nypm@0.3.8: resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==} engines: {node: ^14.16.0 || >=16.10.0} - hasBin: true dependencies: citty: 0.1.6 consola: 3.2.3 @@ -16675,7 +16619,6 @@ packages: /package-json-validator@0.6.3: resolution: {integrity: sha512-juKiFboV4UKUvWQ+OSxstnyukhuluyuEoFmgZw1Rx21XzmwlgDWLcbl3qzjA3789IRORYhVFs7cmAO0YFGwHCg==} - hasBin: true dependencies: optimist: 0.6.1 dev: true @@ -16964,13 +16907,11 @@ packages: /playwright-core@1.42.1: resolution: {integrity: sha512-mxz6zclokgrke9p1vtdy/COWBH+eOZgYUVVU34C73M+4j4HLlQJHtfcqiqqxpP0o8HhMkflvfbquLX5dg6wlfA==} engines: {node: '>=16'} - hasBin: true dev: true /playwright@1.42.1: resolution: {integrity: sha512-PgwB03s2DZBcNRoW+1w9E+VkLBxweib6KTXM0M3tkiT4jVxKSi6PmVJ591J+0u10LUrgxB7dLRbiJqO5s2QPMg==} engines: {node: '>=16'} - hasBin: true dependencies: playwright-core: 1.42.1 optionalDependencies: @@ -16980,7 +16921,6 @@ packages: /plop@4.0.1: resolution: {integrity: sha512-5n8QU93kvL/ObOzBcPAB1siVFtAH1TZM6TntJ3JK5kXT0jIgnQV+j+uaOWWFJlg1cNkzLYm8klgASF65K36q9w==} engines: {node: '>=18'} - hasBin: true dependencies: '@types/liftoff': 4.0.3 chalk: 5.3.0 @@ -17166,7 +17106,6 @@ packages: /prebuild-install@7.1.2: resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} engines: {node: '>=10'} - hasBin: true dependencies: detect-libc: 2.0.3 expand-template: 2.0.3 @@ -17207,13 +17146,11 @@ packages: /prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} engines: {node: '>=10.13.0'} - hasBin: true dev: true /prettier@3.2.5: resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} engines: {node: '>=14'} - hasBin: true dev: true /pretty-bytes@5.6.0: @@ -17407,7 +17344,6 @@ packages: /queue-tick@1.0.1: resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} - requiresBuild: true dev: true /queue@6.0.2: @@ -17459,7 +17395,6 @@ packages: /rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true dependencies: deep-extend: 0.6.0 ini: 1.3.8 @@ -17889,7 +17824,6 @@ packages: /regexp-tree@0.1.27: resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} - hasBin: true dev: true /regexp.prototype.flags@1.5.2: @@ -17916,7 +17850,6 @@ packages: /regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true dependencies: jsesc: 0.5.0 dev: true @@ -17939,7 +17872,7 @@ packages: hast-util-from-html: 2.0.1 unified: 11.0.4 - /rehype-pretty-code@0.13.0(shiki@1.2.0): + /rehype-pretty-code@0.13.0(shiki@1.3.0): resolution: {integrity: sha512-+22dz1StXlF7dlMyOySNaVxgcGhMI4BCxq0JxJJPWYGiKsI6cu5jyuIKGHXHvH18D8sv1rdKtvsY9UEfN3++SQ==} engines: {node: '>=18'} peerDependencies: @@ -17949,7 +17882,7 @@ packages: hast-util-to-string: 3.0.0 parse-numeric-range: 1.3.0 rehype-parse: 9.0.0 - shiki: 1.2.0 + shiki: 1.3.0 unified: 11.0.4 unist-util-visit: 5.0.0 dev: false @@ -18211,14 +18144,12 @@ packages: /rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - hasBin: true dependencies: glob: 7.2.3 dev: true /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true dependencies: glob: 7.2.3 dev: true @@ -18233,7 +18164,6 @@ packages: /rollup@4.13.0: resolution: {integrity: sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true dependencies: '@types/estree': 1.0.5 optionalDependencies: @@ -18371,17 +18301,14 @@ packages: /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true dev: true /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true /semver@7.6.0: resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} engines: {node: '>=10'} - hasBin: true dependencies: lru-cache: 6.0.0 @@ -18468,7 +18395,6 @@ packages: /sha.js@2.4.11: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} - hasBin: true dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 @@ -18520,11 +18446,10 @@ packages: engines: {node: '>=8'} dev: true - /shiki@1.2.0: - resolution: {integrity: sha512-xLhiTMOIUXCv5DqJ4I70GgQCtdlzsTqFLZWcMHHG3TAieBUbvEGthdrlPDlX4mL/Wszx9C6rEcxU6kMlg4YlxA==} + /shiki@1.3.0: + resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==} dependencies: - '@shikijs/core': 1.2.0 - dev: false + '@shikijs/core': 1.3.0 /side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} @@ -18594,7 +18519,6 @@ packages: /smartwrap@2.0.2: resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} engines: {node: '>=6'} - hasBin: true dependencies: array.prototype.flat: 1.3.2 breakword: 1.0.6 @@ -18617,7 +18541,6 @@ packages: /sort-package-json@1.57.0: resolution: {integrity: sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==} - hasBin: true dependencies: detect-indent: 6.1.0 detect-newline: 3.1.0 @@ -18768,7 +18691,6 @@ packages: /storybook@8.0.2(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-X4R8Z7zadSkSVlC4QIJXV8agMHZUjxbue3fBxdp6I90uvZi1fRMB67DtAVHHH8INNl/nnUKXfNe8Sw21KnfhTg==} - hasBin: true dependencies: '@storybook/cli': 8.0.2(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: @@ -19010,7 +18932,6 @@ packages: /style-dictionary@3.9.2: resolution: {integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==} engines: {node: '>=12.0.0'} - hasBin: true dependencies: chalk: 4.1.2 change-case: 4.1.2 @@ -19127,7 +19048,6 @@ packages: /stylelint@16.3.1(typescript@5.4.2): resolution: {integrity: sha512-/JOwQnBvxEKOT2RtNgGpBVXnCSMBgKOL2k7w0K52htwCyJls4+cHvc4YZgXlVoAZS9QJd2DgYAiRnja96pTgxw==} engines: {node: '>=18.12.0'} - hasBin: true dependencies: '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4) '@csstools/css-tokenizer': 2.2.4 @@ -19176,7 +19096,6 @@ packages: /sucrase@3.35.0: resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} engines: {node: '>=16 || 14 >=14.17'} - hasBin: true dependencies: '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 @@ -19235,7 +19154,6 @@ packages: /svgo@3.2.0: resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==} engines: {node: '>=14.0.0'} - hasBin: true dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -19403,7 +19321,6 @@ packages: /terser@5.29.2: resolution: {integrity: sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==} engines: {node: '>=10'} - hasBin: true dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.11.3 @@ -19540,7 +19457,6 @@ packages: /tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true dev: true /trim-lines@3.0.1: @@ -19779,7 +19695,6 @@ packages: /tsx@4.7.1: resolution: {integrity: sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==} engines: {node: '>=18.0.0'} - hasBin: true dependencies: esbuild: 0.19.12 get-tsconfig: 4.7.3 @@ -19794,7 +19709,6 @@ packages: /tty-table@4.2.3: resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} engines: {node: '>=8.0.0'} - hasBin: true dependencies: chalk: 4.1.2 csv: 5.5.3 @@ -19939,7 +19853,6 @@ packages: /typescript@5.4.2: resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} engines: {node: '>=14.17'} - hasBin: true dev: true /ufo@1.5.3: @@ -19949,7 +19862,6 @@ packages: /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} - hasBin: true requiresBuild: true dev: true optional: true @@ -20260,7 +20172,6 @@ packages: /untun@0.1.3: resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} - hasBin: true dependencies: citty: 0.1.6 consola: 3.2.3 @@ -20349,17 +20260,14 @@ packages: /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true /uuid@9.0.1: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - hasBin: true dev: true /uvu@0.5.6: resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} engines: {node: '>=8'} - hasBin: true dependencies: dequal: 2.0.3 diff: 5.2.0 @@ -20498,7 +20406,6 @@ packages: /wait-on@7.2.0: resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==} engines: {node: '>=12.0.0'} - hasBin: true dependencies: axios: 1.6.8 joi: 17.12.2 @@ -20512,7 +20419,6 @@ packages: /wait-port@0.2.14: resolution: {integrity: sha512-kIzjWcr6ykl7WFbZd0TMae8xovwqcqbx6FM9l+7agOgUByhzdjfzZBPK2CPufldTOMxbUivss//Sh9MFawmPRQ==} engines: {node: '>=8'} - hasBin: true dependencies: chalk: 2.4.2 commander: 3.0.2 @@ -20742,7 +20648,6 @@ packages: /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true dependencies: isexe: 2.0.0 dev: true @@ -20750,7 +20655,6 @@ packages: /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} - hasBin: true dependencies: isexe: 2.0.0 dev: true @@ -20861,7 +20765,6 @@ packages: /xss@1.0.15: resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==} engines: {node: '>= 0.10.0'} - hasBin: true dependencies: commander: 2.20.3 cssfilter: 0.0.10 @@ -20898,7 +20801,6 @@ packages: /yaml@2.4.1: resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} engines: {node: '>= 14'} - hasBin: true /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} From cf952813739c2f2f162517cd4efafa41afdf8956 Mon Sep 17 00:00:00 2001 From: Franck Gaudin <franck.gaudin@workleap.com> Date: Mon, 22 Apr 2024 14:01:58 -0400 Subject: [PATCH 20/33] feat: update component page with installation methods data --- apps/docs/app/lib/contentConfig.ts | 7 ++++ apps/docs/app/lib/getComponentDetails.ts | 2 ++ apps/docs/content/components/data.jsx | 34 +++++++++++++++++++ apps/docs/content/components/installation.mdx | 22 ++++++++++++ 4 files changed, 65 insertions(+) create mode 100644 apps/docs/app/lib/contentConfig.ts create mode 100644 apps/docs/content/components/data.jsx diff --git a/apps/docs/app/lib/contentConfig.ts b/apps/docs/app/lib/contentConfig.ts new file mode 100644 index 000000000..99b0e945c --- /dev/null +++ b/apps/docs/app/lib/contentConfig.ts @@ -0,0 +1,7 @@ +import { installMethods } from "@/content/components/data"; + +/* `compileMDX` accepts a scope prop, which makes all of the values available for use in your MDX. + * Each key/value pair in the scope argument will be exposed as a javascript variable. + * So, for example, you could imagine if you had a scope like { foo: 'bar' }, it would be interpreted as const foo = 'bar'. + */ +export const data = { installMethods }; diff --git a/apps/docs/app/lib/getComponentDetails.ts b/apps/docs/app/lib/getComponentDetails.ts index 5c74769b5..bffcb7faf 100644 --- a/apps/docs/app/lib/getComponentDetails.ts +++ b/apps/docs/app/lib/getComponentDetails.ts @@ -3,6 +3,7 @@ import fs from "fs"; import { compileMDX } from "next-mdx-remote/rsc"; import { components } from "@/components/mdx/components.tsx"; import { rehypePluginOptions } from "@/app/lib/rehypeConfig"; +import { data } from "@/app/lib/contentConfig.ts"; export const COMPONENT_PATH = path.join(process.cwd(), "content", "components"); @@ -15,6 +16,7 @@ async function parseFrontMatter(fileContent: string) { }>({ source: fileContent, options: { + scope: data, parseFrontmatter: true, mdxOptions: { remarkPlugins: [], rehypePlugins: rehypePluginOptions as unknown as [] } }, diff --git a/apps/docs/content/components/data.jsx b/apps/docs/content/components/data.jsx new file mode 100644 index 000000000..fd5111e7d --- /dev/null +++ b/apps/docs/content/components/data.jsx @@ -0,0 +1,34 @@ +export const installMethods = [ + { + title: "pnpm", + titleIcon: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"> + <path fill="#F9AD00" + d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z" + /> + <path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z" /> + <path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z" /> + <path fill="#4E4E4E" + d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z" + /> + </svg> + }, + { + title: "yarn", + titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"> + <path fill="#368FB9" + d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0" + /> + {/* eslint-disable max-len */} + <path fill="#FFF" + d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z" + /> + </svg> + }, + { + title: "npm", + titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"> + <path fill="#C12127" d="M0 256V0h256v256z" /> + <path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z" /> + </svg> + } +]; diff --git a/apps/docs/content/components/installation.mdx b/apps/docs/content/components/installation.mdx index 50d842110..76ee98aca 100644 --- a/apps/docs/content/components/installation.mdx +++ b/apps/docs/content/components/installation.mdx @@ -3,4 +3,26 @@ title: Installation description: The installation proccess --- +import { installMethods } from "./data"; + # Installation + +## Install packages + +<Tabs tabs={installMethods}> + <div> + ```shell + pnpm add @hopper-ui/components + ``` + </div> + <div> + ```shell + yarn add -D @hopper-ui/components + ``` + </div> + <div> + ```shell + npm add -D @hopper-ui/components + ``` + </div> +</Tabs> From ea8d178b482aeb5d746a0e582d87284cc19cc8e5 Mon Sep 17 00:00:00 2001 From: Francis Thibault <francis.thibault@gsoft.com> Date: Mon, 22 Apr 2024 17:15:40 -0400 Subject: [PATCH 21/33] moved the homepage to a temporary location until we release components pages --- apps/docs/app/page.tsx | 207 +------------------------- apps/docs/app/pages/landing/page.tsx | 211 +++++++++++++++++++++++++++ 2 files changed, 214 insertions(+), 204 deletions(-) create mode 100644 apps/docs/app/pages/landing/page.tsx diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx index 80884aca7..c646dec99 100644 --- a/apps/docs/app/page.tsx +++ b/apps/docs/app/page.tsx @@ -1,210 +1,9 @@ -"use client"; - -import { Button as HopperButton, HopperProvider } from "@hopper-ui/components"; -import Image from "next/image"; -import { AccessibleIcon, ArrowIcon, DarkModeIcon, FontSizeIcon, InternationalIcon, LineHeightIcon, MarginIcon, SelectArrowIcon, TypescriptIcon } from "../components/icon/index"; -import { type ColorScheme, ThemeContext } from "@/context/theme/ThemeProvider.tsx"; -import { useContext } from "react"; -import Button from "@/components/button/Button"; -import Tag from "@/components/tag/Tag"; -import { ExternalLinkIcon, Icon } from "@/components/icon"; - -// eslint-disable-next-line max-len -import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, FocusIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, NotebookIcon, PinIcon, ProfileIcon, ReactionIcon, RecurringIcon, RewindIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, SyncIcon, TeamIcon, ThumbsUpIcon, UnarchiveIcon, WarningIcon } from "@hopper-ui/icons"; - -import "@hopper-ui/tokens/fonts.css"; -import "./home.css"; - export default function Home() { - const { colorMode } = useContext(ThemeContext); - - const theme = colorMode as ColorScheme; - return ( - <div className="hd-wrapper"> + <div className="hd-wrapper hd-flex"> <main className="hd-home"> - <div className="hd-home__heading"> - <h1 className="hd-home__header">Leap into creativity</h1> - <p className="hd-home__tagline">Explore our Design System, where icons, tokens, and components are handpicked for ultimate simplicity and accessibility.</p> - </div> - <div className="hd-home__ctas"> - <Button as="a" href="/components">Get Started</Button> - <Button as="a" href="https://github.com/gsoft-inc/wl-hopper" variant="secondary" target="_blank">Github <Icon src={ExternalLinkIcon} slot="end-icon" /></Button> - </div> - <div className="hd-home__features"> - <div className="hd-home__feature-item"> - <h2 className="hd-home__feature-title"><AccessibleIcon className="hd-home-feature-title__icon" />Accessible</h2> - <p className="hd-home__feature-copy"> - Built with accessibility in mind Hopper is based on React Aria Components - </p> - </div> - <div className="hd-home__feature-item"> - <h2 className="hd-home__feature-title"><InternationalIcon className="hd-home-feature-title__icon" />International</h2> - <p className="hd-home__feature-copy"> - Experience is pushed further with internationalization. - </p> - </div> - <div className="hd-home__feature-item"> - <h2 className="hd-home__feature-title"><TypescriptIcon className="hd-home-feature-title__icon hd-icon-fill" />Typescript</h2> - <p className="hd-home__feature-copy"> - Typescript based for reduced learning curve and error detection. - </p> - </div> - <div className="hd-home__feature-item"> - <h2 className="hd-home__feature-title"><DarkModeIcon className="hd-home-feature-title__icon" />Dark mode</h2> - <p className="hd-home__feature-copy"> - Switching from light to dark mode couldn't be easier. - </p> - </div> - </div> - <div className="hd-home-samples"> - <div className="hd-home-samples__col hd-home-samples__main-wrapper"> - <div className="hd-home-samples__row"> - <div className="hd-home-samples__col"> - <a className="hd-home-sample__item hd-home-sample__item-colors" href="/tokens/semantic/color"> - <h3 className="hd-home-sample__title">Colors <ArrowIcon className="hd-home-sample__title-icon" /></h3> - <div className="hd-home-sample__colors"> - <div className="hd-home-sample__colors-row"> - <span className="hd-home-sample__color hd-home-sample__color-rock-200"></span> - <span className="hd-home-sample__color hd-home-sample__color-rock-300"></span> - <span className="hd-home-sample__color hd-home-sample__color-rock-400"></span> - <span className="hd-home-sample__color hd-home-sample__color-rock-500"></span> - </div> - <div className="hd-home-sample__colors-row"> - <span className="hd-home-sample__color hd-home-sample__color-sapphire-200"></span> - <span className="hd-home-sample__color hd-home-sample__color-sapphire-300"></span> - <span className="hd-home-sample__color hd-home-sample__color-sapphire-400"></span> - <span className="hd-home-sample__color hd-home-sample__color-sapphire-500"></span> - </div> - </div> - </a> - <a className="hd-home-sample__item hd-home-sample__item-sizes" href="/tokens/semantic/space"> - <h3 className="hd-home-sample__title">Sizes <ArrowIcon className="hd-home-sample__title-icon" /></h3> - <div className="hd-home-sample__sizes"> - <div className="hd-home-sample__size hd-home-sample__size-16"> - <span className="hd-home-sample__size-text">16</span> - <div className="hd-home-sample__size-bar"></div> - </div> - <div className="hd-home-sample__size hd-home-sample__size-24"> - <span className="hd-home-sample__size-text">24</span> - <div className="hd-home-sample__size-bar"></div> - </div> - <div className="hd-home-sample__size hd-home-sample__size-32"> - <span className="hd-home-sample__size-text">32</span> - <div className="hd-home-sample__size-bar"></div> - </div> - <div className="hd-home-sample__size hd-home-sample__size-40"> - <span className="hd-home-sample__size-text">40</span> - <div className="hd-home-sample__size-bar"></div> - </div> - </div> - </a> - </div> - <div className="hd-home-samples__col"> - <a className="hd-home-sample__item hd-home-sample__item-text-styles" href="/tokens/semantic/typography"> - <h3 className="hd-home-sample__title">Text Styles <ArrowIcon className="hd-home-sample__title-icon" /></h3> - <div className="hd-home-sample__text-styles"> - <div className="hd-home-sample__text-styles-col"> - <span className="hd-home-sample__text">A<span className="hd-home-sample__text-lowercase">a</span></span> - </div> - <div className="hd-home-sample__text-styles-col hd-home-sample__text-styles-controls"> - <div className="hd-home-sample__control-knob-title"> - <span className="hd-home-sample__control-title">Regular</span> - <SelectArrowIcon /> - </div> - <div className="hd-home-sample__control-knob"> - <FontSizeIcon /> - <span className="hd-home-sample__control-knob-value">84</span> - </div> - <div className="hd-home-sample__control-knob"> - <LineHeightIcon /> - <span className="hd-home-sample__control-knob-value">96</span> - </div> - <div className="hd-home-sample__control-knob"> - <MarginIcon /> - <span className="hd-home-sample__control-knob-value">0</span> - </div> - </div> - </div> - </a> - </div> - </div> - <a className="hd-home-sample__item hd-home-sample__item-icons" href="/icons/getting-started/introduction"> - <h3 className="hd-home-sample__title">Icons <ArrowIcon className="hd-home-sample__title-icon" /></h3> - <p className="hd-home-sample__tagline">A set of commonly used interface icons.</p> - <HopperProvider colorScheme={theme} className="hd-home-sample__icons"> - <div className="hd-home-sample__icons-row"> - <CalendarIcon className="hd-home-sample__icons-icon" size="sm" /> - <ChartBarIcon className="hd-home-sample__icons-icon" size="sm" /> - <CheckmarkIcon className="hd-home-sample__icons-icon" size="sm" /> - <FilterIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> - <LightbulbIcon className="hd-home-sample__icons-icon" size="sm" /> - <MailIcon className="hd-home-sample__icons-icon" size="sm" /> - <SearchIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> - <ShareIcon className="hd-home-sample__icons-icon" size="sm" /> - <WarningIcon className="hd-home-sample__icons-icon" size="sm" /> - </div> - <div className="hd-home-sample__icons-row"> - <ThumbsUpIcon className="hd-home-sample__icons-icon" size="sm" /> - <LockIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--active" size="sm" /> - <ItalicIcon className="hd-home-sample__icons-icon" size="sm" /> - <EyeVisibleIcon className="hd-home-sample__icons-icon" size="sm" /> - <NotebookIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> - <DeleteIcon className="hd-home-sample__icons-icon" size="sm" /> - <StarIcon className="hd-home-sample__icons-icon" size="sm" /> - <StickyIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> - <ProfileIcon className="hd-home-sample__icons-icon" size="sm" /> - </div> - <div className="hd-home-sample__icons-row hd-home-sample__icons-extra-row"> - <FocusIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> - <ReactionIcon className="hd-home-sample__icons-icon" size="sm" /> - <PinIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> - <SyncIcon className="hd-home-sample__icons-icon" size="sm" /> - <UnarchiveIcon className="hd-home-sample__icons-icon" size="sm" /> - <TeamIcon className="hd-home-sample__icons-icon" size="sm" /> - <ShareIcon className="hd-home-sample__icons-icon" size="sm" /> - <RewindIcon className="hd-home-sample__icons-icon" size="sm" /> - <RecurringIcon className="hd-home-sample__icons-icon" size="sm" /> - </div> - </HopperProvider> - </a> - </div> - <div className="hd-home-sample__item hd-home-sample__item-components"> - <div className="hd-home-sample__item-upcoming"></div> - <div className="hd-home-sample__title-wrap"> - <h3 className="hd-home-sample__title">Components</h3> - <Tag>upcoming</Tag> - </div> - <p className="hd-home-sample__tagline">An accessible suite of components powered by react-aria.</p> - <div className="hd-home-sample-components"> - <div className="hd-home-sample-components__item-wrapper"> - <div className="hd-home-sample-components__item"> - <Image src={`https://cdn.platform.workleap.com/hopper/webdoc/component-avatar-group-${theme}.png`} width="137" height="32" alt="Avatar Group component preview" /> - </div> - </div> - <div className="hd-home-sample-components__item-wrapper"> - <div className="hd-home-sample-components__item"> - <Image src={`https://cdn.platform.workleap.com/hopper/webdoc/component-select-field-${theme}.png`} width="220" height="40" alt="Select Fielg component preview" /> - </div> - </div> - <div className="hd-home-sample-components__item-wrapper"> - <div className="hd-home-sample-components__item"> - <HopperProvider colorScheme={theme}> - <div className="hd-home-sample-components__buttons"> - <HopperButton excludeFromTabOrder>Confirm</HopperButton> - <HopperButton excludeFromTabOrder variant="secondary">I need help</HopperButton> - </div> - </HopperProvider> - </div> - </div> - <div className="hd-home-sample-components__item-wrapper"> - <div className="hd-home-sample-components__item"> - <Image src={`https://cdn.platform.workleap.com/hopper/webdoc/component-radio-group-${theme}.png`} width="99" height="48" alt="Radio Group Component preview" /> - </div> - </div> - </div> - </div> - </div> + <h1 className="hd-display">Welcome to Workleap's <strong className="hd-text--strong">Hopper</strong> Design System.</h1> + <p className="hd-display__subtitle">The documentation is currently in <strong className="hd-text--strong">beta</strong>.</p> </main> </div> ); diff --git a/apps/docs/app/pages/landing/page.tsx b/apps/docs/app/pages/landing/page.tsx new file mode 100644 index 000000000..bb0db0314 --- /dev/null +++ b/apps/docs/app/pages/landing/page.tsx @@ -0,0 +1,211 @@ +"use client"; + +import { Button as HopperButton, HopperProvider } from "@hopper-ui/components"; +import Image from "next/image"; +import { AccessibleIcon, ArrowIcon, DarkModeIcon, FontSizeIcon, InternationalIcon, LineHeightIcon, MarginIcon, SelectArrowIcon, TypescriptIcon } from "../../../components/icon/index"; +import { type ColorScheme, ThemeContext } from "@/context/theme/ThemeProvider.tsx"; +import { useContext } from "react"; +import Button from "@/components/button/Button"; +import Tag from "@/components/tag/Tag"; +import { ExternalLinkIcon, Icon } from "@/components/icon"; + +// eslint-disable-next-line max-len +import { CalendarIcon, ChartBarIcon, CheckmarkIcon, DeleteIcon, EyeVisibleIcon, FilterIcon, FocusIcon, ItalicIcon, LightbulbIcon, LockIcon, MailIcon, NotebookIcon, PinIcon, ProfileIcon, ReactionIcon, RecurringIcon, RewindIcon, SearchIcon, ShareIcon, StarIcon, StickyIcon, SyncIcon, TeamIcon, ThumbsUpIcon, UnarchiveIcon, WarningIcon } from "@hopper-ui/icons"; + +import "@hopper-ui/tokens/fonts.css"; +import "../../home.css"; + +export default function Home() { + const { colorMode } = useContext(ThemeContext); + + const theme = colorMode as ColorScheme; + + return ( + <div className="hd-wrapper"> + <main className="hd-home"> + <div className="hd-home__heading"> + <h1 className="hd-home__header">Leap into creativity</h1> + <p className="hd-home__tagline">Explore our Design System, where icons, tokens, and components are handpicked for ultimate simplicity and accessibility.</p> + </div> + <div className="hd-home__ctas"> + <Button as="a" href="/components">Get Started</Button> + <Button as="a" href="https://github.com/gsoft-inc/wl-hopper" variant="secondary" target="_blank">Github <Icon src={ExternalLinkIcon} slot="end-icon" /></Button> + </div> + <div className="hd-home__features"> + <div className="hd-home__feature-item"> + <h2 className="hd-home__feature-title"><AccessibleIcon className="hd-home-feature-title__icon" />Accessible</h2> + <p className="hd-home__feature-copy"> + Built with accessibility in mind Hopper is based on React Aria Components + </p> + </div> + <div className="hd-home__feature-item"> + <h2 className="hd-home__feature-title"><InternationalIcon className="hd-home-feature-title__icon" />International</h2> + <p className="hd-home__feature-copy"> + Experience is pushed further with internationalization. + </p> + </div> + <div className="hd-home__feature-item"> + <h2 className="hd-home__feature-title"><TypescriptIcon className="hd-home-feature-title__icon hd-icon-fill" />Typescript</h2> + <p className="hd-home__feature-copy"> + Typescript based for reduced learning curve and error detection. + </p> + </div> + <div className="hd-home__feature-item"> + <h2 className="hd-home__feature-title"><DarkModeIcon className="hd-home-feature-title__icon" />Dark mode</h2> + <p className="hd-home__feature-copy"> + Switching from light to dark mode couldn't be easier. + </p> + </div> + </div> + <div className="hd-home-samples"> + <div className="hd-home-samples__col hd-home-samples__main-wrapper"> + <div className="hd-home-samples__row"> + <div className="hd-home-samples__col"> + <a className="hd-home-sample__item hd-home-sample__item-colors" href="/tokens/semantic/color"> + <h3 className="hd-home-sample__title">Colors <ArrowIcon className="hd-home-sample__title-icon" /></h3> + <div className="hd-home-sample__colors"> + <div className="hd-home-sample__colors-row"> + <span className="hd-home-sample__color hd-home-sample__color-rock-200"></span> + <span className="hd-home-sample__color hd-home-sample__color-rock-300"></span> + <span className="hd-home-sample__color hd-home-sample__color-rock-400"></span> + <span className="hd-home-sample__color hd-home-sample__color-rock-500"></span> + </div> + <div className="hd-home-sample__colors-row"> + <span className="hd-home-sample__color hd-home-sample__color-sapphire-200"></span> + <span className="hd-home-sample__color hd-home-sample__color-sapphire-300"></span> + <span className="hd-home-sample__color hd-home-sample__color-sapphire-400"></span> + <span className="hd-home-sample__color hd-home-sample__color-sapphire-500"></span> + </div> + </div> + </a> + <a className="hd-home-sample__item hd-home-sample__item-sizes" href="/tokens/semantic/space"> + <h3 className="hd-home-sample__title">Sizes <ArrowIcon className="hd-home-sample__title-icon" /></h3> + <div className="hd-home-sample__sizes"> + <div className="hd-home-sample__size hd-home-sample__size-16"> + <span className="hd-home-sample__size-text">16</span> + <div className="hd-home-sample__size-bar"></div> + </div> + <div className="hd-home-sample__size hd-home-sample__size-24"> + <span className="hd-home-sample__size-text">24</span> + <div className="hd-home-sample__size-bar"></div> + </div> + <div className="hd-home-sample__size hd-home-sample__size-32"> + <span className="hd-home-sample__size-text">32</span> + <div className="hd-home-sample__size-bar"></div> + </div> + <div className="hd-home-sample__size hd-home-sample__size-40"> + <span className="hd-home-sample__size-text">40</span> + <div className="hd-home-sample__size-bar"></div> + </div> + </div> + </a> + </div> + <div className="hd-home-samples__col"> + <a className="hd-home-sample__item hd-home-sample__item-text-styles" href="/tokens/semantic/typography"> + <h3 className="hd-home-sample__title">Text Styles <ArrowIcon className="hd-home-sample__title-icon" /></h3> + <div className="hd-home-sample__text-styles"> + <div className="hd-home-sample__text-styles-col"> + <span className="hd-home-sample__text">A<span className="hd-home-sample__text-lowercase">a</span></span> + </div> + <div className="hd-home-sample__text-styles-col hd-home-sample__text-styles-controls"> + <div className="hd-home-sample__control-knob-title"> + <span className="hd-home-sample__control-title">Regular</span> + <SelectArrowIcon /> + </div> + <div className="hd-home-sample__control-knob"> + <FontSizeIcon /> + <span className="hd-home-sample__control-knob-value">84</span> + </div> + <div className="hd-home-sample__control-knob"> + <LineHeightIcon /> + <span className="hd-home-sample__control-knob-value">96</span> + </div> + <div className="hd-home-sample__control-knob"> + <MarginIcon /> + <span className="hd-home-sample__control-knob-value">0</span> + </div> + </div> + </div> + </a> + </div> + </div> + <a className="hd-home-sample__item hd-home-sample__item-icons" href="/icons/getting-started/introduction"> + <h3 className="hd-home-sample__title">Icons <ArrowIcon className="hd-home-sample__title-icon" /></h3> + <p className="hd-home-sample__tagline">A set of commonly used interface icons.</p> + <HopperProvider colorScheme={theme} className="hd-home-sample__icons"> + <div className="hd-home-sample__icons-row"> + <CalendarIcon className="hd-home-sample__icons-icon" size="sm" /> + <ChartBarIcon className="hd-home-sample__icons-icon" size="sm" /> + <CheckmarkIcon className="hd-home-sample__icons-icon" size="sm" /> + <FilterIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> + <LightbulbIcon className="hd-home-sample__icons-icon" size="sm" /> + <MailIcon className="hd-home-sample__icons-icon" size="sm" /> + <SearchIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> + <ShareIcon className="hd-home-sample__icons-icon" size="sm" /> + <WarningIcon className="hd-home-sample__icons-icon" size="sm" /> + </div> + <div className="hd-home-sample__icons-row"> + <ThumbsUpIcon className="hd-home-sample__icons-icon" size="sm" /> + <LockIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--active" size="sm" /> + <ItalicIcon className="hd-home-sample__icons-icon" size="sm" /> + <EyeVisibleIcon className="hd-home-sample__icons-icon" size="sm" /> + <NotebookIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> + <DeleteIcon className="hd-home-sample__icons-icon" size="sm" /> + <StarIcon className="hd-home-sample__icons-icon" size="sm" /> + <StickyIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> + <ProfileIcon className="hd-home-sample__icons-icon" size="sm" /> + </div> + <div className="hd-home-sample__icons-row hd-home-sample__icons-extra-row"> + <FocusIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> + <ReactionIcon className="hd-home-sample__icons-icon" size="sm" /> + <PinIcon className="hd-home-sample__icons-icon hd-home-sample__icons-icon--strong" size="sm" /> + <SyncIcon className="hd-home-sample__icons-icon" size="sm" /> + <UnarchiveIcon className="hd-home-sample__icons-icon" size="sm" /> + <TeamIcon className="hd-home-sample__icons-icon" size="sm" /> + <ShareIcon className="hd-home-sample__icons-icon" size="sm" /> + <RewindIcon className="hd-home-sample__icons-icon" size="sm" /> + <RecurringIcon className="hd-home-sample__icons-icon" size="sm" /> + </div> + </HopperProvider> + </a> + </div> + <div className="hd-home-sample__item hd-home-sample__item-components"> + <div className="hd-home-sample__item-upcoming"></div> + <div className="hd-home-sample__title-wrap"> + <h3 className="hd-home-sample__title">Components</h3> + <Tag>upcoming</Tag> + </div> + <p className="hd-home-sample__tagline">An accessible suite of components powered by react-aria.</p> + <div className="hd-home-sample-components"> + <div className="hd-home-sample-components__item-wrapper"> + <div className="hd-home-sample-components__item"> + <Image src={`https://cdn.platform.workleap.com/hopper/webdoc/component-avatar-group-${theme}.png`} width="137" height="32" alt="Avatar Group component preview" /> + </div> + </div> + <div className="hd-home-sample-components__item-wrapper"> + <div className="hd-home-sample-components__item"> + <Image src={`https://cdn.platform.workleap.com/hopper/webdoc/component-select-field-${theme}.png`} width="220" height="40" alt="Select Fielg component preview" /> + </div> + </div> + <div className="hd-home-sample-components__item-wrapper"> + <div className="hd-home-sample-components__item"> + <HopperProvider colorScheme={theme}> + <div className="hd-home-sample-components__buttons"> + <HopperButton excludeFromTabOrder>Confirm</HopperButton> + <HopperButton excludeFromTabOrder variant="secondary">I need help</HopperButton> + </div> + </HopperProvider> + </div> + </div> + <div className="hd-home-sample-components__item-wrapper"> + <div className="hd-home-sample-components__item"> + <Image src={`https://cdn.platform.workleap.com/hopper/webdoc/component-radio-group-${theme}.png`} width="99" height="48" alt="Radio Group Component preview" /> + </div> + </div> + </div> + </div> + </div> + </main> + </div> + ); +} From 062fe9c81784aadd91a2e10fb2ca03b04a2228fa Mon Sep 17 00:00:00 2001 From: Franck Gaudin <franck.gaudin@workleap.com> Date: Mon, 22 Apr 2024 21:19:47 -0400 Subject: [PATCH 22/33] feat: creation of a `PackageInstallation` component to display a block of code giving the package installation procedure. - refactoring of the CodeBlock component to make it usable in other documentation pages --- apps/docs/.eslintrc.json | 3 +- apps/docs/app/lib/contentConfig.ts | 4 +- apps/docs/app/lib/getComponentCode.ts | 17 +--- .../previewComponent/CodeWrapper.tsx | 4 +- .../highlightCode/HighlightCode.stories.tsx | 23 ++++++ .../highlightCode/HighlightCode.tsx} | 6 +- .../components/highlightCode/highlightCode.ts | 16 ++++ apps/docs/components/highlightCode/index.ts | 8 ++ apps/docs/components/mdx/components.tsx | 4 + .../PackageInstallation.tsx | 77 +++++++++++++++++++ apps/docs/components/pre/pre.css | 1 + apps/docs/content/components/data.jsx | 34 -------- apps/docs/content/components/installation.mdx | 20 +---- .../icons/react-icons/installation.mdx | 24 +----- .../react-icons/standalone-installation.mdx | 24 +----- apps/docs/content/icons/svg/installation.mdx | 24 +----- .../tokens/getting-started/installation.mdx | 24 +----- 17 files changed, 145 insertions(+), 168 deletions(-) create mode 100644 apps/docs/components/highlightCode/HighlightCode.stories.tsx rename apps/docs/{app/ui/components/codeBlock/CodeBlock.tsx => components/highlightCode/HighlightCode.tsx} (86%) create mode 100644 apps/docs/components/highlightCode/highlightCode.ts create mode 100644 apps/docs/components/highlightCode/index.ts create mode 100644 apps/docs/components/packageInstallation/PackageInstallation.tsx delete mode 100644 apps/docs/content/components/data.jsx diff --git a/apps/docs/.eslintrc.json b/apps/docs/.eslintrc.json index c632ceb3b..05eb0d577 100644 --- a/apps/docs/.eslintrc.json +++ b/apps/docs/.eslintrc.json @@ -22,7 +22,8 @@ "Switcher": true, "IconSpecTable": true, "PreviewComponent": true, - "MigrateGuide": true + "MigrateGuide": true, + "PackageInstallation": true }, "overrides": [ { diff --git a/apps/docs/app/lib/contentConfig.ts b/apps/docs/app/lib/contentConfig.ts index 99b0e945c..6def6e9ed 100644 --- a/apps/docs/app/lib/contentConfig.ts +++ b/apps/docs/app/lib/contentConfig.ts @@ -1,7 +1,5 @@ -import { installMethods } from "@/content/components/data"; - /* `compileMDX` accepts a scope prop, which makes all of the values available for use in your MDX. * Each key/value pair in the scope argument will be exposed as a javascript variable. * So, for example, you could imagine if you had a scope like { foo: 'bar' }, it would be interpreted as const foo = 'bar'. */ -export const data = { installMethods }; +export const data = {}; diff --git a/apps/docs/app/lib/getComponentCode.ts b/apps/docs/app/lib/getComponentCode.ts index 955604097..f0c8346e4 100644 --- a/apps/docs/app/lib/getComponentCode.ts +++ b/apps/docs/app/lib/getComponentCode.ts @@ -1,10 +1,6 @@ import path from "path"; import { promises as fs } from "fs"; -import { type Plugin, unified } from "unified"; -import remarkParse from "remark-parse"; -import remarkRehype from "remark-rehype"; -import rehypeStringify from "rehype-stringify"; -import { rehypePluginOptions } from "@/app/lib/rehypeConfig"; +import { highlightCode } from "@/components/highlightCode"; function formatComponentExamplePath(uri: string) { return path.join(process.cwd(), "..", "..", "packages", "components", "src", uri); @@ -22,17 +18,6 @@ ${code} `); } -async function highlightCode(code: string) { - const file = await unified() - .use(remarkParse as unknown as Plugin) - .use(remarkRehype as unknown as Plugin) - .use(rehypePluginOptions as unknown as Plugin) - .use(rehypeStringify as unknown as Plugin) - .process(code); - - return String(file); -} - export async function getComponentCode(filePath: string) { const examplePath = formatComponentExamplePath(filePath); const fileContent = await getFileContent(`${examplePath}.tsx`); diff --git a/apps/docs/app/ui/components/previewComponent/CodeWrapper.tsx b/apps/docs/app/ui/components/previewComponent/CodeWrapper.tsx index 67c4e33cd..b371d50cf 100644 --- a/apps/docs/app/ui/components/previewComponent/CodeWrapper.tsx +++ b/apps/docs/app/ui/components/previewComponent/CodeWrapper.tsx @@ -1,5 +1,5 @@ import { getComponentCode } from "@/app/lib/getComponentCode.ts"; -import CodeBlock from "@/app/ui/components/codeBlock/CodeBlock.tsx"; +import HighlightCode from "@/components/highlightCode/HighlightCode.tsx"; interface CodeWrapperProps { src: string; @@ -9,7 +9,7 @@ async function CodeWrapper({ src }: CodeWrapperProps) { const code = await getComponentCode(src); return ( - <CodeBlock code={code} /> + <HighlightCode code={code} /> ); } diff --git a/apps/docs/components/highlightCode/HighlightCode.stories.tsx b/apps/docs/components/highlightCode/HighlightCode.stories.tsx new file mode 100644 index 000000000..9dffa52c0 --- /dev/null +++ b/apps/docs/components/highlightCode/HighlightCode.stories.tsx @@ -0,0 +1,23 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import { HighlightCode, highlightCode } from "./"; + +const meta = { + title: "components/HighlightCode", + component: HighlightCode +} satisfies Meta<typeof HighlightCode>; + +export default meta; +type Story = StoryObj<typeof meta>; + +const code = await highlightCode(` +\`\`\`shell showLineNumbers +pnpm install @hoper-ui/icons +\`\`\` +`); + +export const Default: Story = { + args: { + code: code + } +}; diff --git a/apps/docs/app/ui/components/codeBlock/CodeBlock.tsx b/apps/docs/components/highlightCode/HighlightCode.tsx similarity index 86% rename from apps/docs/app/ui/components/codeBlock/CodeBlock.tsx rename to apps/docs/components/highlightCode/HighlightCode.tsx index 45ffda18b..a205881ac 100644 --- a/apps/docs/app/ui/components/codeBlock/CodeBlock.tsx +++ b/apps/docs/components/highlightCode/HighlightCode.tsx @@ -8,6 +8,10 @@ import rehypeParse from "rehype-parse"; import Pre from "@/components/pre/Pre.tsx"; +export interface HighlightCodeProps { + code: string; +} + const production = { Fragment: prod.Fragment, jsx: prod.jsx, jsxs: prod.jsxs, components: { pre: Pre } }; function useProcessor(text: string) { @@ -27,6 +31,6 @@ function useProcessor(text: string) { return Content; } -export default function CodeBlock({ code }: { code: string }) { +export default function HighlightCode({ code }: HighlightCodeProps) { return useProcessor(code); } diff --git a/apps/docs/components/highlightCode/highlightCode.ts b/apps/docs/components/highlightCode/highlightCode.ts new file mode 100644 index 000000000..a2593942d --- /dev/null +++ b/apps/docs/components/highlightCode/highlightCode.ts @@ -0,0 +1,16 @@ +import { type Plugin, unified } from "unified"; +import remarkParse from "remark-parse"; +import remarkRehype from "remark-rehype"; +import { rehypePluginOptions } from "@/app/lib/rehypeConfig"; +import rehypeStringify from "rehype-stringify"; + +export async function highlightCode(code: string) { + const file = await unified() + .use(remarkParse as unknown as Plugin) + .use(remarkRehype as unknown as Plugin) + .use(rehypePluginOptions as unknown as Plugin) + .use(rehypeStringify as unknown as Plugin) + .process(code); + + return String(file); +} diff --git a/apps/docs/components/highlightCode/index.ts b/apps/docs/components/highlightCode/index.ts new file mode 100644 index 000000000..ad98271c0 --- /dev/null +++ b/apps/docs/components/highlightCode/index.ts @@ -0,0 +1,8 @@ +import { highlightCode } from "./highlightCode.ts"; +import HighlightCode, { type HighlightCodeProps } from "./HighlightCode.tsx"; + +export { + highlightCode, + HighlightCode, + type HighlightCodeProps +}; diff --git a/apps/docs/components/mdx/components.tsx b/apps/docs/components/mdx/components.tsx index 0cc69939f..2d87bd93c 100644 --- a/apps/docs/components/mdx/components.tsx +++ b/apps/docs/components/mdx/components.tsx @@ -16,6 +16,7 @@ import Switcher from "@/app/ui/icons/switcher/Switcher.tsx"; import Title from "@/components/title/Title.tsx"; import MotionPreview from "@/components/motionPreview/MotionPreview.tsx"; import Footnote from "@/components/footnote/Footnote.tsx"; +import PackageInstallation, { type PackageInstallationProps } from "@/components/packageInstallation/PackageInstallation.tsx"; import type { PreviewComponentProps } from "@/app/ui/components/previewComponent/PreviewComponent.tsx"; import type { MigrateGuideProps } from "@/app/ui/components/migrateGuide/MigrateGuide.tsx"; @@ -39,6 +40,9 @@ export const components = { Tabs: Tabs, TableSection: TableSection, Switcher: Switcher, + PackageInstallation: (props: PackageInstallationProps) => { + return <PackageInstallation {...props} />; + }, PreviewComponent: (props: PreviewComponentProps) => { return <PreviewComponent {...props} />; }, diff --git a/apps/docs/components/packageInstallation/PackageInstallation.tsx b/apps/docs/components/packageInstallation/PackageInstallation.tsx new file mode 100644 index 000000000..ef3bdf867 --- /dev/null +++ b/apps/docs/components/packageInstallation/PackageInstallation.tsx @@ -0,0 +1,77 @@ +import Tabs from "@/components/tabs/Tabs.tsx"; +import { HighlightCode, highlightCode } from "@/components/highlightCode"; + +import type { ReactElement } from "react"; + +export interface PackageInstallationProps { + library: string; + mode: "dev" | "prod"; +} + +interface MethodIcons { + [key: string]: ReactElement; +} + +const methods = ["pnpm", "yarn", "npm"]; + +const methodsIcons: MethodIcons = { + pnpm: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"> + <path fill="#F9AD00" + d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z" + /> + <path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z" /> + <path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z" /> + <path fill="#4E4E4E" + d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z" + /> + </svg>, + yarn: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"> + <path fill="#368FB9" + d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0" + /> + {/* eslint-disable max-len */} + <path fill="#FFF" + d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z" + /> + </svg>, + npm: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"> + <path fill="#C12127" d="M0 256V0h256v256z" /> + <path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z" /> + </svg> +}; + +const installMethods = methods.map(method => ({ + category: method, + title: method, + titleIcon: methodsIcons[method] as ReactElement +})); + +const formatCode = async (method: string, library: string, mode: string) => { + const code = `${method} add ${mode === "dev" ? "-D" : ""} @hopper-ui/${library}`; + + return await highlightCode(` +\`\`\`shell +${code.replace(/\s{2,}/g, " ")} +\`\`\` +`); +}; + +const PackageInstallation = async ({ library, mode = "prod" }: PackageInstallationProps) => { + const tabsContent = await Promise.all(methods.map(async method => { + const code = await formatCode(method, library, mode); + + return ( + <div key={method}> + <HighlightCode code={code} /> + </div> + ); + })); + + return ( + <Tabs tabs={installMethods}> + {tabsContent} + </Tabs> + ); +}; + +export default PackageInstallation; diff --git a/apps/docs/components/pre/pre.css b/apps/docs/components/pre/pre.css index 205c1e549..2e927d20e 100644 --- a/apps/docs/components/pre/pre.css +++ b/apps/docs/components/pre/pre.css @@ -8,6 +8,7 @@ margin-block: 0.25rem; align-content: center; color: var(--hd-color-neutral-text-strong); + overflow-x: auto; } .hd-pre--title, diff --git a/apps/docs/content/components/data.jsx b/apps/docs/content/components/data.jsx deleted file mode 100644 index fd5111e7d..000000000 --- a/apps/docs/content/components/data.jsx +++ /dev/null @@ -1,34 +0,0 @@ -export const installMethods = [ - { - title: "pnpm", - titleIcon: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"> - <path fill="#F9AD00" - d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z" - /> - <path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z" /> - <path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z" /> - <path fill="#4E4E4E" - d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z" - /> - </svg> - }, - { - title: "yarn", - titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"> - <path fill="#368FB9" - d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0" - /> - {/* eslint-disable max-len */} - <path fill="#FFF" - d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z" - /> - </svg> - }, - { - title: "npm", - titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"> - <path fill="#C12127" d="M0 256V0h256v256z" /> - <path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z" /> - </svg> - } -]; diff --git a/apps/docs/content/components/installation.mdx b/apps/docs/content/components/installation.mdx index 76ee98aca..acea6300e 100644 --- a/apps/docs/content/components/installation.mdx +++ b/apps/docs/content/components/installation.mdx @@ -3,26 +3,8 @@ title: Installation description: The installation proccess --- -import { installMethods } from "./data"; - # Installation ## Install packages -<Tabs tabs={installMethods}> - <div> - ```shell - pnpm add @hopper-ui/components - ``` - </div> - <div> - ```shell - yarn add -D @hopper-ui/components - ``` - </div> - <div> - ```shell - npm add -D @hopper-ui/components - ``` - </div> -</Tabs> +<PackageInstallation library="components" mod="prod" /> diff --git a/apps/docs/content/icons/react-icons/installation.mdx b/apps/docs/content/icons/react-icons/installation.mdx index a84606049..ca1cd8255 100644 --- a/apps/docs/content/icons/react-icons/installation.mdx +++ b/apps/docs/content/icons/react-icons/installation.mdx @@ -4,12 +4,6 @@ description: Getting started with Workleap Design Icons order: 1 --- -export const installMethods = [ - { title: "pnpm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"><path fill="#F9AD00" d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z"/><path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z"/><path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z"/><path fill="#4E4E4E" d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z"/></svg>}, - { title: "yarn", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#368FB9" d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0"/><path fill="#FFF" d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z"/></svg> }, - { title: "npm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#C12127" d="M0 256V0h256v256z"/><path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z"/></svg> } -]; - React Icons are typically utilized alongside the `@hopper-ui/components`. If you want to use them without `@hopper-ui/components`, refer to the [standalone installation](/icons/react-icons/standalone-installation). ## Prerequisites @@ -18,23 +12,7 @@ Follow the `@hopper-ui/components` procedure(coming soon). ## Install packages -<Tabs tabs={installMethods}> - <div> - ```shell - pnpm add @hopper-ui/icons - ``` - </div> - <div> - ```shell - yarn add -D @hopper-ui/icons - ``` - </div> - <div> - ```shell - npm add -D @hopper-ui/icons - ``` - </div> -</Tabs> +<PackageInstallation library="icons" mod="prod" /> ## Import Styles diff --git a/apps/docs/content/icons/react-icons/standalone-installation.mdx b/apps/docs/content/icons/react-icons/standalone-installation.mdx index 47dc149ef..8562b7a98 100644 --- a/apps/docs/content/icons/react-icons/standalone-installation.mdx +++ b/apps/docs/content/icons/react-icons/standalone-installation.mdx @@ -4,33 +4,11 @@ description: Getting started with Workleap Design Icons order: 2 --- -export const installMethods = [ - { title: "pnpm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"><path fill="#F9AD00" d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z"/><path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z"/><path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z"/><path fill="#4E4E4E" d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z"/></svg>}, - { title: "yarn", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#368FB9" d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0"/><path fill="#FFF" d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z"/></svg> }, - { title: "npm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#C12127" d="M0 256V0h256v256z"/><path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z"/></svg> } -]; - It is recommended to use `@hopper-ui/icons` with `@hopper-ui/components` as detailed in the [installation section](/icons/react-icons/installation). The standalone installation procedure is detailed in case you only need the icons, and not the components. ## Install packages -<Tabs tabs={installMethods}> - <div> - ```shell - pnpm add @hopper-ui/icons @hopper-ui/styled-system react-aria-components - ``` - </div> - <div> - ```shell - yarn add @hopper-ui/icons @hopper-ui/styled-system react-aria-components - ``` - </div> - <div> - ```shell - npm add @hopper-ui/icons @hopper-ui/styled-system react-aria-components - ``` - </div> -</Tabs> +<PackageInstallation library="icons @hopper-ui/styled-system react-aria-components" mod="prod" /> ## Import Styles diff --git a/apps/docs/content/icons/svg/installation.mdx b/apps/docs/content/icons/svg/installation.mdx index 2f922ed08..36083ff9a 100644 --- a/apps/docs/content/icons/svg/installation.mdx +++ b/apps/docs/content/icons/svg/installation.mdx @@ -4,31 +4,9 @@ description: Getting started with Workleap Design Icons order: 1 --- -export const installMethods = [ - { title: "pnpm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"><path fill="#F9AD00" d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z"/><path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z"/><path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z"/><path fill="#4E4E4E" d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z"/></svg>}, - { title: "yarn", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#368FB9" d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0"/><path fill="#FFF" d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z"/></svg> }, - { title: "npm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#C12127" d="M0 256V0h256v256z"/><path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z"/></svg> } -]; - ## Install packages -<Tabs tabs={installMethods}> - <div> - ```shell - pnpm add @hopper-ui/svg-icons - ``` - </div> - <div> - ```shell - yarn add -D @hopper-ui/svg-icons - ``` - </div> - <div> - ```shell - npm add -D @hopper-ui/svg-icons - ``` - </div> -</Tabs> +<PackageInstallation library="svg-icons" mod="prod" /> ## Start using icons diff --git a/apps/docs/content/tokens/getting-started/installation.mdx b/apps/docs/content/tokens/getting-started/installation.mdx index 54a4ee9f7..19d9edb30 100644 --- a/apps/docs/content/tokens/getting-started/installation.mdx +++ b/apps/docs/content/tokens/getting-started/installation.mdx @@ -4,30 +4,8 @@ description: Getting started with Workleap Design Tokens order: 2 --- -export const installMethods = [ - { title: "pnpm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"><path fill="#F9AD00" d="M48.78 48.78H0V0h48.78v48.78ZM102.44 48.78H53.66V0h48.78v48.78ZM156.1 48.78h-48.78V0h48.78v48.78Z"/><path fill="#4E4E4E" d="M102.44 102.44H53.66V53.66h48.78v48.78Z"/><path fill="#F9AD00" d="M156.1 102.44h-48.78V53.66h48.78v48.78Z"/><path fill="#4E4E4E" d="M48.78 156.1H0v-48.78h48.78v48.78ZM102.44 156.1H53.66v-48.78h48.78v48.78ZM156.1 156.1h-48.78v-48.78h48.78v48.78Z"/></svg>}, - { title: "yarn", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#368FB9" d="M128 0C57.328 0 0 57.328 0 128s57.328 128 128 128 128-57.328 128-128S198.672 0 128 0"/><path fill="#FFF" d="M203.317 174.06c-7.907 1.878-11.91 3.608-21.695 9.983-15.271 9.884-31.976 14.48-31.976 14.48s-1.383 2.076-5.387 3.015c-6.918 1.68-32.963 3.114-35.335 3.163-6.376.05-10.28-1.63-11.367-4.25-3.311-7.907 4.744-11.367 4.744-11.367s-1.779-1.087-2.817-2.076c-.939-.939-1.927-2.816-2.224-2.125-1.235 3.015-1.878 10.379-5.189 13.69-4.547 4.596-13.146 3.064-18.236.395-5.585-2.965.395-9.933.395-9.933s-3.015 1.779-5.436-1.878c-2.175-3.36-4.2-9.094-3.657-16.16.593-8.056 9.587-15.865 9.587-15.865s-1.581-11.91 3.608-24.117c4.695-11.12 17.347-20.065 17.347-20.065s-10.626-11.762-6.672-22.338c2.57-6.92 3.608-6.87 4.448-7.166 2.965-1.137 5.831-2.373 7.957-4.695 10.625-11.466 24.166-9.292 24.166-9.292s6.425-19.52 12.356-15.715c1.828 1.186 8.401 15.814 8.401 15.814s7.018-4.102 7.809-2.57c4.25 8.254 4.744 24.019 2.866 33.607-3.163 15.814-11.07 24.315-14.233 29.652-.741 1.236 8.5 5.14 14.332 21.3 5.387 14.777.593 27.182 1.433 28.566.148.247.198.346.198.346s6.177.494 18.582-7.166c6.622-4.102 14.48-8.698 23.425-8.797 8.65-.149 9.094 9.983 2.57 11.564zm11.763-7.265c-.89-7.017-6.82-11.86-14.431-11.762-11.367.148-20.905 6.03-27.231 9.934-2.471 1.532-4.596 2.669-6.425 3.509.395-5.733.05-13.245-2.916-21.498-3.608-9.885-8.45-15.963-11.91-19.472 4.003-5.832 9.489-14.332 12.058-27.478 2.224-11.219 1.533-28.664-3.558-38.45-1.038-1.976-2.767-3.41-4.942-4.003-.89-.247-2.57-.741-5.881.198-4.991-10.329-6.721-11.416-8.056-12.306-2.767-1.779-6.029-2.174-9.093-1.038-4.102 1.483-7.61 5.437-10.922 12.454a51.47 51.47 0 0 0-1.334 3.015c-6.277.445-16.161 2.718-24.513 11.762-1.038 1.137-3.064 1.977-5.19 2.768h.05c-4.349 1.532-6.326 5.09-8.747 11.515-3.361 8.994.098 17.84 3.508 23.574-4.645 4.151-10.823 10.773-14.084 18.532-4.053 9.588-4.498 18.978-4.35 24.068-3.459 3.658-8.796 10.527-9.39 18.237-.79 10.773 3.114 18.088 4.844 20.756.494.791 1.038 1.434 1.63 2.076-.197 1.334-.246 2.768.05 4.25.643 3.46 2.817 6.277 6.128 8.056 6.524 3.46 15.617 4.942 22.635 1.433 2.52 2.669 7.117 5.239 15.469 5.239h.494c2.125 0 29.109-1.433 36.967-3.36 3.509-.841 5.93-2.324 7.512-3.658 5.04-1.582 18.977-6.326 32.123-14.826 9.291-6.03 12.504-7.315 19.423-8.995 6.72-1.63 10.922-7.759 10.082-14.53z"/></svg> }, - { title: "npm", titleIcon: <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256"><path fill="#C12127" d="M0 256V0h256v256z"/><path fill="#FFF" d="M48 48h160v160h-32V80h-48v128H48z"/></svg> } -]; - ## Package manager Run the following command to install the tokens package. -<Tabs tabs={installMethods}> - <div> - ```shell - pnpm add @hopper-ui/tokens - ``` - </div> - <div> - ```shell - yarn add -D @hopper-ui/tokens - ``` - </div> - <div> - ```shell - npm add -D @hopper-ui/tokens - ``` - </div> -</Tabs> +<PackageInstallation library="tokens" mod="prod" /> From 813a1d32a1b619e17aa4ff1cad44c285e72e4022 Mon Sep 17 00:00:00 2001 From: Franck Gaudin <franck.gaudin@workleap.com> Date: Tue, 23 Apr 2024 11:55:22 -0400 Subject: [PATCH 23/33] feat: modification of the MethodIcons type with Alexandre's suggestion --- .../packageInstallation/PackageInstallation.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/docs/components/packageInstallation/PackageInstallation.tsx b/apps/docs/components/packageInstallation/PackageInstallation.tsx index ef3bdf867..45d1fc0d2 100644 --- a/apps/docs/components/packageInstallation/PackageInstallation.tsx +++ b/apps/docs/components/packageInstallation/PackageInstallation.tsx @@ -8,11 +8,9 @@ export interface PackageInstallationProps { mode: "dev" | "prod"; } -interface MethodIcons { - [key: string]: ReactElement; -} +type MethodIcons = Record<typeof methods[number], ReactElement>; -const methods = ["pnpm", "yarn", "npm"]; +const methods = ["pnpm", "yarn", "npm"] as const; const methodsIcons: MethodIcons = { pnpm: <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 156 156"> @@ -43,7 +41,7 @@ const methodsIcons: MethodIcons = { const installMethods = methods.map(method => ({ category: method, title: method, - titleIcon: methodsIcons[method] as ReactElement + titleIcon: methodsIcons[method] })); const formatCode = async (method: string, library: string, mode: string) => { From d78aefbec6016ce9c2cdef4007cdd1e98c847fe6 Mon Sep 17 00:00:00 2001 From: Francis Thibault <francis.thibault@gsoft.com> Date: Tue, 23 Apr 2024 15:26:29 -0400 Subject: [PATCH 24/33] icon now react to pointer events --- .changeset/shaggy-ways-complain.md | 5 +++++ packages/icons/src/Icon.module.css | 4 ---- packages/icons/src/RichIcon.module.css | 1 - 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .changeset/shaggy-ways-complain.md diff --git a/.changeset/shaggy-ways-complain.md b/.changeset/shaggy-ways-complain.md new file mode 100644 index 000000000..4ee5021f1 --- /dev/null +++ b/.changeset/shaggy-ways-complain.md @@ -0,0 +1,5 @@ +--- +"@hopper-ui/icons": patch +--- + +Fix an issue preventing pointer events on icons diff --git a/packages/icons/src/Icon.module.css b/packages/icons/src/Icon.module.css index f1a66a304..b4fd98331 100644 --- a/packages/icons/src/Icon.module.css +++ b/packages/icons/src/Icon.module.css @@ -1,10 +1,6 @@ .hop-Icon { - pointer-events: none; - display: inline-block; flex-shrink: 0; - color: inherit; - fill: currentcolor; } diff --git a/packages/icons/src/RichIcon.module.css b/packages/icons/src/RichIcon.module.css index e67fdfc3b..af3729983 100644 --- a/packages/icons/src/RichIcon.module.css +++ b/packages/icons/src/RichIcon.module.css @@ -4,7 +4,6 @@ --hop-richicon-placeholder-icon-color: var(--hop-decorative-option7-icon); --hop-richicon-placeholder-icon-strong-color: var(--hop-samoyed); - pointer-events: none; display: inline-block; flex-shrink: 0; } From 3c4f4b1915e006250142f39c403d3d981fcc4112 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 19:36:50 +0000 Subject: [PATCH 25/33] ci(changesets): version packages --- .changeset/shaggy-ways-complain.md | 5 ----- packages/icons/CHANGELOG.md | 6 ++++++ packages/icons/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/shaggy-ways-complain.md diff --git a/.changeset/shaggy-ways-complain.md b/.changeset/shaggy-ways-complain.md deleted file mode 100644 index 4ee5021f1..000000000 --- a/.changeset/shaggy-ways-complain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hopper-ui/icons": patch ---- - -Fix an issue preventing pointer events on icons diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index f2401aaa2..4b108ad37 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -1,5 +1,11 @@ # @hopper-ui/icons +## 1.10.1 + +### Patch Changes + +- d78aefb: Fix an issue preventing pointer events on icons + ## 1.10.0 ### Minor Changes diff --git a/packages/icons/package.json b/packages/icons/package.json index 9843f46a0..3490b5c03 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,7 +1,7 @@ { "name": "@hopper-ui/icons", "author": "Workleap", - "version": "1.10.0", + "version": "1.10.1", "description": "The icons package.", "license": "Apache-2.0", "repository": { From f71c97b89876c668530f0e82f4d020acf89e469f Mon Sep 17 00:00:00 2001 From: Alexandre Asselin <alexandre.asselin@gsoft.com> Date: Tue, 23 Apr 2024 16:51:19 -0400 Subject: [PATCH 26/33] update the css loader to simplifty the CSS modules classnames --- .storybook/main.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.storybook/main.ts b/.storybook/main.ts index 4d3d1b925..171d77c66 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -58,8 +58,32 @@ const storybookConfig: StorybookConfig = { }) ].filter(Boolean); + // Modify the css-loader options to simplify the class names + // By default, with the config, the classnames are like this: GETEs8cGi4WwwvV1ooFy MUs8LC8twKwy5uAnhOWJ PafTkO4uwI6M3m4HX7JI + // With this new config, the classnames are like this: hop-Button___GETEs hop-Button--primary___MUs8L hop-Button--md___PafTk + for (const rule of config.module?.rules || []) { + if (typeof rule === "object" && rule?.use && Array.isArray(rule.use)) { + for (const loader of rule.use) { + if (typeof loader === "object" && loader?.loader?.includes("css-loader")) { + const cssLoader = loader; + if (cssLoader && typeof cssLoader === "object") { + const previousOptions = typeof cssLoader.options === "string" ? { } : cssLoader.options; + cssLoader.options = { + ...previousOptions, + modules: { + ...((typeof previousOptions?.modules === "string" ? { mode: previousOptions?.modules } : previousOptions?.modules)), + localIdentName: "[local]___[hash:base64:5]" + } + }; + } + } + } + } + } + return config; } }; + export default storybookConfig; From 1fbe8ce5480f0712667c89aa0617903119fc7aa9 Mon Sep 17 00:00:00 2001 From: Alexandre Asselin <alexandre.asselin@gsoft.com> Date: Wed, 24 Apr 2024 12:44:57 -0400 Subject: [PATCH 27/33] fix normal .css file that were not loading --- .storybook/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/.storybook/main.ts b/.storybook/main.ts index 171d77c66..7d72cd85d 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -72,6 +72,7 @@ const storybookConfig: StorybookConfig = { ...previousOptions, modules: { ...((typeof previousOptions?.modules === "string" ? { mode: previousOptions?.modules } : previousOptions?.modules)), + auto: true, localIdentName: "[local]___[hash:base64:5]" } }; From 8b6f956c59f218ea7362a8a2a4bbbacd7f83b900 Mon Sep 17 00:00:00 2001 From: Franck Gaudin <franck.gaudin@workleap.com> Date: Wed, 24 Apr 2024 13:30:20 -0400 Subject: [PATCH 28/33] feat(Doc): Create Table component and refactor existing tables --- .../previewComponent/previewComponent.css | 2 +- .../app/ui/components/propTable/PropTable.tsx | 52 +++--- .../app/ui/components/propTable/propTable.css | 7 + apps/docs/app/ui/tokens/preview/preview.css | 6 +- .../app/ui/tokens/table/IconSpecTable.tsx | 39 +---- apps/docs/app/ui/tokens/table/Table.tsx | 50 ------ ...ble.stories.tsx => TokenTable.stories.tsx} | 8 +- apps/docs/app/ui/tokens/table/TokenTable.tsx | 36 ++++ .../app/ui/tokens/table/TypographyTable.tsx | 50 +++--- .../ui/tokens/table/TypographyTableRow.tsx | 165 +++++++++--------- .../tokens/table/TypographyVariantTable.tsx | 45 ++--- .../table/{table.css => tokenTable.css} | 43 +---- .../ui/tokens/tableSection/TableSection.tsx | 4 +- apps/docs/components/mdx/components.tsx | 8 +- apps/docs/components/table/Table.stories.tsx | 50 ++++++ apps/docs/components/table/Table.tsx | 68 ++++++++ apps/docs/components/table/table.css | 40 +++++ 17 files changed, 369 insertions(+), 304 deletions(-) create mode 100644 apps/docs/app/ui/components/propTable/propTable.css delete mode 100644 apps/docs/app/ui/tokens/table/Table.tsx rename apps/docs/app/ui/tokens/table/{Table.stories.tsx => TokenTable.stories.tsx} (80%) create mode 100644 apps/docs/app/ui/tokens/table/TokenTable.tsx rename apps/docs/app/ui/tokens/table/{table.css => tokenTable.css} (60%) create mode 100644 apps/docs/components/table/Table.stories.tsx create mode 100644 apps/docs/components/table/Table.tsx create mode 100644 apps/docs/components/table/table.css diff --git a/apps/docs/app/ui/components/previewComponent/previewComponent.css b/apps/docs/app/ui/components/previewComponent/previewComponent.css index b8661bbb3..73b5c28b8 100644 --- a/apps/docs/app/ui/components/previewComponent/previewComponent.css +++ b/apps/docs/app/ui/components/previewComponent/previewComponent.css @@ -26,7 +26,7 @@ .hd-component-wrapper__action { position: absolute; - inset: 1rem 1rem 0 auto; + inset: 1rem 1rem auto auto; z-index: 100; } diff --git a/apps/docs/app/ui/components/propTable/PropTable.tsx b/apps/docs/app/ui/components/propTable/PropTable.tsx index f40f57a2d..ae885064a 100644 --- a/apps/docs/app/ui/components/propTable/PropTable.tsx +++ b/apps/docs/app/ui/components/propTable/PropTable.tsx @@ -5,6 +5,8 @@ import type { ComponentDocWithGroups } from "@/scripts/generateComponentData.mjs import Collapsible from "@/components/collapsible/Collapsible.tsx"; import Title from "@/components/title/Title.tsx"; +import "./propTable.css"; + export interface PropTableProps { component: string; } @@ -59,32 +61,30 @@ export default async function PropTable({ component }: PropTableProps) { <p>{description}</p> {Object.keys(groups).map(group => { return ( - <> - <Collapsible - title={ - <Title as="h3" level={3}> - {group} - - } - key={group} - > - - - - - - - - - - - - {Object.keys(groups[group]).map(key => renderRow(key, groups[group][key]))} - -
PropertyTypeDefaultRequiredDescription
- - - + + {group} + + } + className="props__section" + > + + + + + + + + + + + + {Object.keys(groups[group]).map(key => renderRow(key, groups[group][key]))} + +
PropertyTypeDefaultRequiredDescription
+
); })} diff --git a/apps/docs/app/ui/components/propTable/propTable.css b/apps/docs/app/ui/components/propTable/propTable.css new file mode 100644 index 000000000..578471498 --- /dev/null +++ b/apps/docs/app/ui/components/propTable/propTable.css @@ -0,0 +1,7 @@ +.props__section { + margin-top: var(--hd-space-1); +} + +.props__section .hd-collapsible__content { + margin-top: var(--hd-space-1); +} diff --git a/apps/docs/app/ui/tokens/preview/preview.css b/apps/docs/app/ui/tokens/preview/preview.css index 5d5fbcddf..cde6d319c 100644 --- a/apps/docs/app/ui/tokens/preview/preview.css +++ b/apps/docs/app/ui/tokens/preview/preview.css @@ -3,7 +3,9 @@ width: var(--hd-space-5); height: var(--hd-space-3); border-radius: 0; - float: right; + + /* float: right; */ + display: inline-block; background-color: var(--hd-color-primary-surface); } @@ -18,7 +20,7 @@ .hd-preview--font { align-items: center; background-color: transparent; - display: flex; + display: inline-flex; font-size: 1.5rem; height: auto; justify-content: flex-end; diff --git a/apps/docs/app/ui/tokens/table/IconSpecTable.tsx b/apps/docs/app/ui/tokens/table/IconSpecTable.tsx index e4b1368de..45042d04d 100644 --- a/apps/docs/app/ui/tokens/table/IconSpecTable.tsx +++ b/apps/docs/app/ui/tokens/table/IconSpecTable.tsx @@ -1,8 +1,6 @@ -"use client"; +import Table from "@/components/table/Table"; -import { Cell, Column, Row, Table as TableRA, TableBody, TableHeader } from "react-aria-components"; - -import "./table.css"; +import "./tokenTable.css"; interface IconSpecTableProps { data: { @@ -15,34 +13,11 @@ interface IconSpecTableProps { } const IconSpecTable = ({ data }: IconSpecTableProps) => { - const sizes = ["sm", "md", "lg"]; - - const listItems = data?.map(row => { - return ( - - {row.name} - {sizes.map(size => ( - - {row[size]} - - ))} - - ); - }); - - return ( - - - Anatomy - Small - Medium - Large - - - {listItems} - - - ); + return ; }; export default IconSpecTable; diff --git a/apps/docs/app/ui/tokens/table/Table.tsx b/apps/docs/app/ui/tokens/table/Table.tsx deleted file mode 100644 index d4ebe9621..000000000 --- a/apps/docs/app/ui/tokens/table/Table.tsx +++ /dev/null @@ -1,50 +0,0 @@ -"use client"; - -import { Cell, Column, Row, Table as TableRA, TableBody, TableHeader } from "react-aria-components"; - -import Preview from "@/app/ui/tokens/preview/Preview"; -import Code from "@/components/code/Code"; - -import "./table.css"; - -interface TableProps { - category: string; - noPreview?: boolean; - data: { - name: string; - value: string; - }[]; -} - -const Table = ({ category, data, noPreview }: TableProps) => { - const listItems = data?.map(token => { - const { name, value } = token; - - return ( - - - {`--${name}`} - - {value} - {!noPreview && - - } - - ); - }); - - return ( - - - Name - Value - {!noPreview && Preview} - - - {listItems} - - - ); -}; - -export default Table; diff --git a/apps/docs/app/ui/tokens/table/Table.stories.tsx b/apps/docs/app/ui/tokens/table/TokenTable.stories.tsx similarity index 80% rename from apps/docs/app/ui/tokens/table/Table.stories.tsx rename to apps/docs/app/ui/tokens/table/TokenTable.stories.tsx index 2aa8f577b..cd080f86c 100644 --- a/apps/docs/app/ui/tokens/table/Table.stories.tsx +++ b/apps/docs/app/ui/tokens/table/TokenTable.stories.tsx @@ -1,11 +1,11 @@ import type { Meta, StoryObj } from "@storybook/react"; -import Table from "./Table"; +import TokenTable from "./TokenTable.tsx"; const meta = { - title: "app/tokens/Table", - component: Table -} satisfies Meta; + title: "app/tokens/TokenTable", + component: TokenTable +} satisfies Meta; export default meta; type Story = StoryObj; diff --git a/apps/docs/app/ui/tokens/table/TokenTable.tsx b/apps/docs/app/ui/tokens/table/TokenTable.tsx new file mode 100644 index 000000000..8276385e3 --- /dev/null +++ b/apps/docs/app/ui/tokens/table/TokenTable.tsx @@ -0,0 +1,36 @@ +import Table from "@/components/table/Table"; + +import Preview from "@/app/ui/tokens/preview/Preview"; +import Code from "@/components/code/Code"; + +import "./tokenTable.css"; + +interface TableProps { + category: string; + noPreview?: boolean; + data: { + name: string; + value: string; + }[]; +} + +const TokenTable = ({ category, data, noPreview }: TableProps) => { + const formattedData = data.map(token => { + const { name, value } = token; + + return { + name: {`--${name}`}, + value: value, + preview: !noPreview && + }; + }); + + + return
; +}; + +export default TokenTable; diff --git a/apps/docs/app/ui/tokens/table/TypographyTable.tsx b/apps/docs/app/ui/tokens/table/TypographyTable.tsx index cbc5618ef..c9a2e68f6 100644 --- a/apps/docs/app/ui/tokens/table/TypographyTable.tsx +++ b/apps/docs/app/ui/tokens/table/TypographyTable.tsx @@ -1,11 +1,15 @@ -"use client"; - -import React from "react"; import clsx from "clsx"; -import { groupItemsByProperties, groupItemsByPropertiesAndSizes, type Size, type TokenData } from "@/app/lib/getTypographyTokens"; -import { TypographyTableRow } from "./TypographyTableRow"; +import Table from "@/components/table/Table"; + +import { + groupItemsByProperties, + groupItemsByPropertiesAndSizes, + type Size, + type TokenData +} from "@/app/lib/getTypographyTokens"; +import { typographyTableRow } from "./TypographyTableRow"; -import "./table.css"; +import "./tokenTable.css"; // maps the raw token list of a list filtered by property function transformDataToTokenData(inputData: Record): TokenData { @@ -31,36 +35,36 @@ const TypographyTable = ({ type, data }: TypographyTableProps) => { const hasNoSizes = type === "overline"; const tokenData = transformDataToTokenData(data); - const listItems = hasNoSizes ? generateSizelessRows(tokenData, type) : generateSizeRows(tokenData, type); + const listItems = hasNoSizes ? [generateSizelessRows(tokenData, type)] : generateSizeRows(tokenData, type); - return ( -
- - - {!hasNoSizes && } - - - - - - {listItems} - -
SizeValuesPreview
- ); + return (); }; function generateSizeRows(tokenData: TokenData, type: string) { const filteredData = groupItemsByPropertiesAndSizes(tokenData, type); return Object.keys(filteredData).map(size => { - return ; + return typographyTableRow( + type, + filteredData[size as keyof typeof filteredData]!, + size as Size + ); }); } function generateSizelessRows(tokenData: TokenData, type: string) { const properties = groupItemsByProperties(tokenData, type); - return ; + return typographyTableRow(type, properties!); } export default TypographyTable; diff --git a/apps/docs/app/ui/tokens/table/TypographyTableRow.tsx b/apps/docs/app/ui/tokens/table/TypographyTableRow.tsx index d8547b7d3..3e7fd31f6 100644 --- a/apps/docs/app/ui/tokens/table/TypographyTableRow.tsx +++ b/apps/docs/app/ui/tokens/table/TypographyTableRow.tsx @@ -2,15 +2,10 @@ import type { ComponentProps, ReactNode } from "react"; import TypographyPreview from "../preview/TypographyPreview"; import Code from "@/components/code/Code"; import type { FontProperties, Size } from "@/app/lib/getTypographyTokens"; -import "./table.css"; -interface TypographyTableRowProps { - type: string; - properties: FontProperties; - size?: Size; -} +import "./tokenTable.css"; -export function TypographyTableRow({ type, properties, size }: TypographyTableRowProps) { +export function typographyTableRow(type: string, properties: FontProperties, size?: Size) { const { fontFamily, fontSize, @@ -29,101 +24,97 @@ export function TypographyTableRow({ type, properties, size }: TypographyTableRo }; } - return ( - - {size && } - - - - ); + return ({ + name: size, + value: , + preview: + }); } interface PropertiesCellProps { properties: FontProperties; } -function PropertiesCell({ properties } : PropertiesCellProps) { +function PropertiesCell({ properties }: PropertiesCellProps) { return ( - +
{size} - -
- - - {properties.fontSize && ( - - )} - {properties.fontWeight && ( - - )} - {properties.lineHeight && ( - - )} - {properties.fontFamily && ( - - )} - {properties.topOffset && ( - Top Offset1} - value={properties.topOffset.value} - /> - )} - {properties.bottomOffset && ( - Bottom Offset1} - value={properties.bottomOffset.value} - /> - )} - -
-
+ + {properties.fontSize && ( + + )} + {properties.fontWeight && ( + + )} + {properties.lineHeight && ( + + )} + {properties.fontFamily && ( + + )} + {properties.topOffset && ( + Top Offset1} + value={properties.topOffset.value} + /> + )} + {properties.bottomOffset && ( + Bottom Offset1} + value={properties.bottomOffset.value} + /> + )} + +
); } -interface PropertyRowProps extends Omit, "children">{ +interface PropertyRowProps extends Omit, "children"> { tokenName: string; displayName: ReactNode; value: string; } function PropertyRow({ tokenName, displayName, value, ...rest }: PropertyRowProps) { - const tokenValue = value; - return ( @@ -133,7 +124,7 @@ function PropertyRow({ tokenName, displayName, value, ...rest }: PropertyRowProp {tokenName} - {tokenValue} + {value} ); diff --git a/apps/docs/app/ui/tokens/table/TypographyVariantTable.tsx b/apps/docs/app/ui/tokens/table/TypographyVariantTable.tsx index 0f9088dae..87f55ce1e 100644 --- a/apps/docs/app/ui/tokens/table/TypographyVariantTable.tsx +++ b/apps/docs/app/ui/tokens/table/TypographyVariantTable.tsx @@ -1,10 +1,8 @@ -"use client"; - -import React from "react"; import TypographyPreview from "@/app/ui/tokens/preview/TypographyPreview"; import Code from "@/components/code/Code"; +import Table from "@/components/table/Table"; -import "./table.css"; +import "./tokenTable.css"; interface TypographyVariantTableProps { data: Record; @@ -27,37 +25,20 @@ const TypographyVariantTable = ({ type, data }: TypographyVariantTableProps) => const listItems = filteredDataByWeightVariation.map(item => { const fontWeight = item.value; - return ( - - - {item.name} - - {`--${item.name}`} - - - {item.value} - - - - - - - ); + return { + name: {`--${item.name}`}, + value: fontWeight, + preview: + }; }); return ( - - - - - - - - - - {listItems} - -
NameValuePreview
+ ); }; diff --git a/apps/docs/app/ui/tokens/table/table.css b/apps/docs/app/ui/tokens/table/tokenTable.css similarity index 60% rename from apps/docs/app/ui/tokens/table/table.css rename to apps/docs/app/ui/tokens/table/tokenTable.css index cd275e8f4..56f42626e 100644 --- a/apps/docs/app/ui/tokens/table/table.css +++ b/apps/docs/app/ui/tokens/table/tokenTable.css @@ -1,44 +1,3 @@ -.hd-table { - width: 100%; - outline: none; - border-spacing: 0; - align-self: start; -} - -.hd-table__column { - padding: var(--hd-space-2) var(--hd-space-1); - text-align: left; - color: var(--hd-color-neutral-text-weakest); - font-size: 0.8125rem; - font-style: normal; - font-weight: 400; - line-height: 0.8125rem; -} - -.hd-table__column:first-child { - padding-left: 0; -} - -.hd-table__column:last-child, -.hd-table__cell:last-child { - text-align: right; -} - -.hd-table__column--size { - min-width: 3rem; -} - -.hd-table__cell { - font-family: var(--hd-mono-font-family); - font-size: 0.8125rem; - padding: var(--hd-space-1); - border-bottom: var(--hd-border-size) solid var(--hd-color-neutral-border); -} - -.hd-table__row > .hd-table__cell:first-child { - padding-left: 0; -} - /* TypoTable */ .hd-table__cell.hd-typo__cell { text-align: left; @@ -72,7 +31,7 @@ } /* Has No Sizes */ -.hd-typo-table--has-no-sizes .hd-typo__cell{ +.hd-typo-table--has-no-sizes .hd-typo__cell { padding: 0; } diff --git a/apps/docs/app/ui/tokens/tableSection/TableSection.tsx b/apps/docs/app/ui/tokens/tableSection/TableSection.tsx index 7ed27b1d0..b5d44607c 100644 --- a/apps/docs/app/ui/tokens/tableSection/TableSection.tsx +++ b/apps/docs/app/ui/tokens/tableSection/TableSection.tsx @@ -1,7 +1,7 @@ "use client"; import React from "react"; -import Table from "@/app/ui/tokens/table/Table"; +import TokenTable from "@/app/ui/tokens/table/TokenTable.tsx"; import "@hopper-ui/tokens/fonts.css"; @@ -25,7 +25,7 @@ const TableSection = ({ tokens, categories, excludedCategories, categoryKey }: T }); return
-
+ ; }; diff --git a/apps/docs/components/mdx/components.tsx b/apps/docs/components/mdx/components.tsx index 3f746c659..a3c0695c7 100644 --- a/apps/docs/components/mdx/components.tsx +++ b/apps/docs/components/mdx/components.tsx @@ -5,7 +5,7 @@ import Card from "@/components/card/Card.tsx"; import NextImage from "@/components/image/Image.tsx"; import Pre from "@/components/pre/Pre.tsx"; import InlineCode from "@/components/code/InlineCode.tsx"; -import Table from "@/app/ui/tokens/table/Table.tsx"; +import TokenTable from "@/app/ui/tokens/table/TokenTable.tsx"; import TypographyTable from "@/app/ui/tokens/table/TypographyTable.tsx"; import TypographyVariantTable from "@/app/ui/tokens/table/TypographyVariantTable.tsx"; import { IconTable } from "@/app/ui/icons/iconTable/IconTable.tsx"; @@ -16,7 +16,9 @@ import Switcher from "@/app/ui/icons/switcher/Switcher.tsx"; import Title from "@/components/title/Title.tsx"; import MotionPreview from "@/components/motionPreview/MotionPreview.tsx"; import Footnote from "@/components/footnote/Footnote.tsx"; -import PackageInstallation, { type PackageInstallationProps } from "@/components/packageInstallation/PackageInstallation.tsx"; +import PackageInstallation, { + type PackageInstallationProps +} from "@/components/packageInstallation/PackageInstallation.tsx"; import type { PreviewComponentProps } from "@/app/ui/components/previewComponent/PreviewComponent.tsx"; import type { MigrateGuideProps } from "@/app/ui/components/migrateGuide/MigrateGuide.tsx"; import type { PropTableProps } from "@/app/ui/components/propTable/PropTable.tsx"; @@ -34,7 +36,7 @@ export const components = { pre: Pre, MotionPreview: MotionPreview, Footnote: Footnote, - Table: Table, + Table: TokenTable, TypographyTable: TypographyTable, TypographyVariantTable: TypographyVariantTable, IconTable: IconTable, diff --git a/apps/docs/components/table/Table.stories.tsx b/apps/docs/components/table/Table.stories.tsx new file mode 100644 index 000000000..71eba3345 --- /dev/null +++ b/apps/docs/components/table/Table.stories.tsx @@ -0,0 +1,50 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import Table from "./Table"; +import Code from "@/components/code/Code"; +import Preview from "@/app/ui/tokens/preview/Preview.tsx"; + +const meta = { + title: "components/Table", + component: Table +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + args: { + head: ["Position", "Mass", "Symbol", "Name"], + data: [ + { position: 6, mass: 12.011, symbol: "C", name: "Carbon" }, + { position: 7, mass: 14.007, symbol: "N", name: "Nitrogen" }, + { position: 39, mass: 88.906, symbol: "Y", name: "Yttrium" }, + { position: 56, mass: 137.33, symbol: "Ba", name: "Barium" }, + { position: 58, mass: 140.12, symbol: "Ce", name: "Cerium" } + ] + } +}; + +export const Tokens: Story = { + args: { + lastColumnAlignment: "right", + head: ["Token", "Value", "Preview"], + data: [ + { + name: --hop-sapphire-200, + value: "#95b1ff", + preview: + }, + { + name: --hop-primary-surface-disabled, + value: "#95b1ff", + preview: + }, + { + name: --hop-primary-surface-disabled, + value: "#2040c7", + preview: + } + ] + } +}; diff --git a/apps/docs/components/table/Table.tsx b/apps/docs/components/table/Table.tsx new file mode 100644 index 000000000..9a84d3db0 --- /dev/null +++ b/apps/docs/components/table/Table.tsx @@ -0,0 +1,68 @@ +"use client"; + +import clsx from "clsx"; +import { Cell, Column, Row, Table as TableRA, TableBody, TableHeader } from "react-aria-components"; +import type { ReactNode } from "react"; + +import "./table.css"; + +interface dataType { + [key: string]: string | number | boolean | undefined | null | ReactNode; +} + +interface TableProps { + head: (string | boolean)[]; + data: dataType[]; + lastColumnAlignment?: "left" | "right"; + "ariaLabel"?: string; + className?: string; +} + +function generateUniqueKey() { + return `${Date.now()}-${Math.random()}`; +} + +const Table = ({ data, head, lastColumnAlignment = "left", ariaLabel = "standard table", className }: TableProps) => { + const textAlignRight = lastColumnAlignment === "right"; + const lastColumn = head.length - 1; + + const headItems = head.map((item, index) => { + return ( + + {item} + + ); + }); + + const dataItems = data.map(item => { + return ( + + {Object.keys(item).map((key, index) => { + return ( + + {item[key]} + + ); + })} + + ); + }); + + return ( + + + {headItems} + + + {dataItems} + + + ); +}; + +export default Table; diff --git a/apps/docs/components/table/table.css b/apps/docs/components/table/table.css new file mode 100644 index 000000000..195fba20c --- /dev/null +++ b/apps/docs/components/table/table.css @@ -0,0 +1,40 @@ +.hd-table { + width: 100%; + outline: none; + border-spacing: 0; + align-self: start; +} + +.hd-table__column { + padding: var(--hd-space-2) var(--hd-space-1); + text-align: left; + color: var(--hd-color-neutral-text-weakest); + font-size: 0.8125rem; + font-style: normal; + font-weight: 400; + line-height: 0.8125rem; +} + +.hd-table__column:first-child { + padding-left: 0; +} + +.hd-table__column--size { + min-width: 3rem; +} + +.hd-table__cell { + font-family: var(--hd-mono-font-family); + font-size: 0.8125rem; + padding: var(--hd-space-1); + border-bottom: var(--hd-border-size) solid var(--hd-color-neutral-border); +} + +.hd-table__row > .hd-table__cell:first-child { + padding-left: 0; +} + +.hd-table__colum--right, +.hd-table__cell--right { + text-align: right; +} From ba1fef1fb072f3531e0ea4a8de1487a2ded5768a Mon Sep 17 00:00:00 2001 From: Franck Gaudin Date: Wed, 24 Apr 2024 13:32:12 -0400 Subject: [PATCH 29/33] feat(Doc): Create Collapsible component --- .../components/collapsible/Collapsible.stories.tsx | 9 --------- apps/docs/components/collapsible/Collapsible.tsx | 5 +++-- apps/docs/components/collapsible/collapsible.css | 14 ++++++++++---- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/apps/docs/components/collapsible/Collapsible.stories.tsx b/apps/docs/components/collapsible/Collapsible.stories.tsx index 6b9a4b0f9..f4a21b576 100644 --- a/apps/docs/components/collapsible/Collapsible.stories.tsx +++ b/apps/docs/components/collapsible/Collapsible.stories.tsx @@ -17,12 +17,3 @@ export const Default: Story = { children: "conent of the collapsible" } }; - -export const Multiple: Story = { - render: () => ( -
- content of the collapsible 1 - content of the collapsible 2 -
- ) -}; diff --git a/apps/docs/components/collapsible/Collapsible.tsx b/apps/docs/components/collapsible/Collapsible.tsx index 94d20c3b8..169dc64de 100644 --- a/apps/docs/components/collapsible/Collapsible.tsx +++ b/apps/docs/components/collapsible/Collapsible.tsx @@ -12,9 +12,10 @@ export interface CollapsibleProps { title: ReactNode; label?: string; isOpen?: boolean; + className?: string; } -const Collapsible = ({ children, title, label, isOpen = false }: CollapsibleProps) => { +const Collapsible = ({ children, title, label, isOpen = false, className }: CollapsibleProps) => { const [open, setOpen] = useState(isOpen); const contentRef = useRef(null); @@ -29,7 +30,7 @@ const Collapsible = ({ children, title, label, isOpen = false }: CollapsibleProp }; return ( -
+
Date: Wed, 24 Apr 2024 13:33:25 -0400 Subject: [PATCH 30/33] feat(Doc): fix layout --- apps/docs/app/components/[slug]/page.tsx | 1 - apps/docs/app/layout.css | 2 +- apps/docs/app/ui/layout/aside/aside.css | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/docs/app/components/[slug]/page.tsx b/apps/docs/app/components/[slug]/page.tsx index 9bfc35f8d..c83efe0e1 100644 --- a/apps/docs/app/components/[slug]/page.tsx +++ b/apps/docs/app/components/[slug]/page.tsx @@ -1,4 +1,3 @@ -"use client"; import { notFound } from "next/navigation"; import Heading from "@/app/ui/components/heading/Heading.tsx"; import { getComponentDetails } from "@/app/lib/getComponentDetails.ts"; diff --git a/apps/docs/app/layout.css b/apps/docs/app/layout.css index c1a8a1c54..ccc7c99b3 100644 --- a/apps/docs/app/layout.css +++ b/apps/docs/app/layout.css @@ -23,7 +23,7 @@ html { } main { - padding-block: var(--hd-space-4) var(--hd-space-8); + padding-block: var(--hd-space-8); flex: 1 1 auto; min-width: 0; order: 1; diff --git a/apps/docs/app/ui/layout/aside/aside.css b/apps/docs/app/ui/layout/aside/aside.css index 837601c06..0bf3b13c2 100644 --- a/apps/docs/app/ui/layout/aside/aside.css +++ b/apps/docs/app/ui/layout/aside/aside.css @@ -58,7 +58,7 @@ /* making sure that if a user toggles the list and resize his browser the list is still visible */ /* We could do this in JS but I think that fixes the issue */ - display: flex!important; + display: flex !important; } .hd-aside__list--closed { @@ -117,7 +117,7 @@ left: 0; z-index: 1; border-radius: var(--hd-space-1); - transition: top .25s cubic-bezier(0,1,.5,1); + transition: top .25s cubic-bezier(0, 1, .5, 1); display: none; } From c3ae9eb4661e33e320bb4c0afaa298fa36d0a4e8 Mon Sep 17 00:00:00 2001 From: Franck Gaudin Date: Wed, 24 Apr 2024 13:57:13 -0400 Subject: [PATCH 31/33] remove component data --- .gitignore | 3 +++ apps/docs/datas/components/Button.json | 1 - apps/docs/datas/components/ButtonContext.json | 1 - apps/docs/datas/components/ButtonGroup.json | 1 - apps/docs/datas/components/ButtonGroupContext.json | 1 - apps/docs/datas/components/Checkbox.json | 1 - apps/docs/datas/components/CheckboxContext.json | 1 - apps/docs/datas/components/CheckboxField.json | 1 - apps/docs/datas/components/CheckboxFieldContext.json | 1 - apps/docs/datas/components/CheckboxGroup.json | 1 - apps/docs/datas/components/CheckboxGroupContext.json | 1 - apps/docs/datas/components/CheckboxList.json | 1 - apps/docs/datas/components/CheckboxListContext.json | 1 - apps/docs/datas/components/ClearSlots.json | 1 - apps/docs/datas/components/ErrorMessage.json | 1 - apps/docs/datas/components/ErrorMessageContext.json | 1 - apps/docs/datas/components/Flex.json | 1 - apps/docs/datas/components/Grid.json | 1 - apps/docs/datas/components/HelperMessage.json | 1 - apps/docs/datas/components/HelperMessageContext.json | 1 - apps/docs/datas/components/HopperProvider.json | 1 - apps/docs/datas/components/IconList.json | 1 - apps/docs/datas/components/IconListContext.json | 1 - apps/docs/datas/components/Inline.json | 1 - apps/docs/datas/components/Label.json | 1 - apps/docs/datas/components/LabelContext.json | 1 - apps/docs/datas/components/Link.json | 1 - apps/docs/datas/components/LinkContext.json | 1 - apps/docs/datas/components/SlotProvider.json | 1 - apps/docs/datas/components/Spinner.json | 1 - apps/docs/datas/components/SpinnerContext.json | 1 - apps/docs/datas/components/Stack.json | 1 - apps/docs/datas/components/Text.json | 1 - apps/docs/datas/components/TextContext.json | 1 - apps/docs/datas/components/composeClassnameRenderProps.json | 1 - apps/docs/datas/components/cssModule.json | 1 - apps/docs/datas/components/isTextOnlyChildren.json | 1 - apps/docs/datas/components/sizeAdapter.json | 1 - apps/docs/datas/components/types.json | 1 - apps/docs/datas/components/useLocalizedString.json | 1 - apps/docs/datas/components/useRenderProps.json | 1 - apps/docs/datas/components/useSlot.json | 1 - 42 files changed, 3 insertions(+), 41 deletions(-) delete mode 100644 apps/docs/datas/components/Button.json delete mode 100644 apps/docs/datas/components/ButtonContext.json delete mode 100644 apps/docs/datas/components/ButtonGroup.json delete mode 100644 apps/docs/datas/components/ButtonGroupContext.json delete mode 100644 apps/docs/datas/components/Checkbox.json delete mode 100644 apps/docs/datas/components/CheckboxContext.json delete mode 100644 apps/docs/datas/components/CheckboxField.json delete mode 100644 apps/docs/datas/components/CheckboxFieldContext.json delete mode 100644 apps/docs/datas/components/CheckboxGroup.json delete mode 100644 apps/docs/datas/components/CheckboxGroupContext.json delete mode 100644 apps/docs/datas/components/CheckboxList.json delete mode 100644 apps/docs/datas/components/CheckboxListContext.json delete mode 100644 apps/docs/datas/components/ClearSlots.json delete mode 100644 apps/docs/datas/components/ErrorMessage.json delete mode 100644 apps/docs/datas/components/ErrorMessageContext.json delete mode 100644 apps/docs/datas/components/Flex.json delete mode 100644 apps/docs/datas/components/Grid.json delete mode 100644 apps/docs/datas/components/HelperMessage.json delete mode 100644 apps/docs/datas/components/HelperMessageContext.json delete mode 100644 apps/docs/datas/components/HopperProvider.json delete mode 100644 apps/docs/datas/components/IconList.json delete mode 100644 apps/docs/datas/components/IconListContext.json delete mode 100644 apps/docs/datas/components/Inline.json delete mode 100644 apps/docs/datas/components/Label.json delete mode 100644 apps/docs/datas/components/LabelContext.json delete mode 100644 apps/docs/datas/components/Link.json delete mode 100644 apps/docs/datas/components/LinkContext.json delete mode 100644 apps/docs/datas/components/SlotProvider.json delete mode 100644 apps/docs/datas/components/Spinner.json delete mode 100644 apps/docs/datas/components/SpinnerContext.json delete mode 100644 apps/docs/datas/components/Stack.json delete mode 100644 apps/docs/datas/components/Text.json delete mode 100644 apps/docs/datas/components/TextContext.json delete mode 100644 apps/docs/datas/components/composeClassnameRenderProps.json delete mode 100644 apps/docs/datas/components/cssModule.json delete mode 100644 apps/docs/datas/components/isTextOnlyChildren.json delete mode 100644 apps/docs/datas/components/sizeAdapter.json delete mode 100644 apps/docs/datas/components/types.json delete mode 100644 apps/docs/datas/components/useLocalizedString.json delete mode 100644 apps/docs/datas/components/useRenderProps.json delete mode 100644 apps/docs/datas/components/useSlot.json diff --git a/.gitignore b/.gitignore index 6ac8e96da..1303b332c 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,6 @@ build-storybook.log # contains our project's chromatic ID chromatic.config.json + +# Datas are temporarily excluded from git while the page is being developed +/apps/docs/datas/components/ diff --git a/apps/docs/datas/components/Button.json b/apps/docs/datas/components/Button.json deleted file mode 100644 index 1e6a1f252..000000000 --- a/apps/docs/datas/components/Button.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/buttons/src/Button.tsx","description":"Buttons are used to initialize an action. Button labels express what action will occur when the user interacts with it.\n\n[View Documentation](TODO)","displayName":"Button","methods":[],"props":{"variant":{"defaultValue":null,"description":"The visual style of the button.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\" | \"danger\" | \"upsell\" | \"ghost-primary\" | \"ghost-secondary\" | \"ghost-danger\""}},"size":{"defaultValue":{"value":"\"md\""},"description":"A button can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"fluid":{"defaultValue":null,"description":"Whether or not the button takes up the width of its container.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"isLoading":{"defaultValue":null,"description":"","name":"isLoading","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"href":{"defaultValue":null,"description":"A URL to link to. Setting this makes the component render an `a` tag instead of a `button`","name":"href","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link.","name":"target","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"form":{"defaultValue":null,"description":"The
element to associate the button with.\nThe value of this attribute must be the id of a in the same document.","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: ButtonRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: ButtonRenderProps) => ReactNode)"}},"isDisabled":{"defaultValue":null,"description":"Whether the button is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\""}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"string"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"type":{"defaultValue":{"value":"'button'"},"description":"The behavior of the button when used in an HTML form.","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"\"button\" | \"submit\" | \"reset\""}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"formAction":{"defaultValue":null,"description":"The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.","name":"formAction","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formEncType":{"defaultValue":null,"description":"Indicates how to encode the form data that is submitted.","name":"formEncType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formMethod":{"defaultValue":null,"description":"Indicates the HTTP method used to submit the form.","name":"formMethod","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formNoValidate":{"defaultValue":null,"description":"Indicates that the form is not to be validated when it is submitted.","name":"formNoValidate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"formTarget":{"defaultValue":null,"description":"Overrides the target attribute of the button's form owner.","name":"formTarget","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"value":{"defaultValue":null,"description":"The value associated with the button's name when it's submitted with the form data.","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: ButtonRenderProps) => string)"}},"name":{"defaultValue":null,"description":"Submitted as a pair with the button's value as part of the form data.","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}},"groups":{"default":{"variant":{"defaultValue":null,"description":"The visual style of the button.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\" | \"danger\" | \"upsell\" | \"ghost-primary\" | \"ghost-secondary\" | \"ghost-danger\""}},"size":{"defaultValue":{"value":"\"md\""},"description":"A button can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"fluid":{"defaultValue":null,"description":"Whether or not the button takes up the width of its container.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"isLoading":{"defaultValue":null,"description":"","name":"isLoading","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"href":{"defaultValue":null,"description":"A URL to link to. Setting this makes the component render an `a` tag instead of a `button`","name":"href","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link.","name":"target","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"form":{"defaultValue":null,"description":"The element to associate the button with.\nThe value of this attribute must be the id of a in the same document.","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: ButtonRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: ButtonRenderProps) => ReactNode)"}},"isDisabled":{"defaultValue":null,"description":"Whether the button is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"formAction":{"defaultValue":null,"description":"The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.","name":"formAction","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formEncType":{"defaultValue":null,"description":"Indicates how to encode the form data that is submitted.","name":"formEncType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formMethod":{"defaultValue":null,"description":"Indicates the HTTP method used to submit the form.","name":"formMethod","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formNoValidate":{"defaultValue":null,"description":"Indicates that the form is not to be validated when it is submitted.","name":"formNoValidate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"formTarget":{"defaultValue":null,"description":"Overrides the target attribute of the button's form owner.","name":"formTarget","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"value":{"defaultValue":null,"description":"The value associated with the button's name when it's submitted with the form data.","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: ButtonRenderProps) => string)"}},"name":{"defaultValue":null,"description":"Submitted as a pair with the button's value as part of the form data.","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}},"events":{"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}}},"a11y":{"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\""}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"string"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"type":{"defaultValue":{"value":"'button'"},"description":"The behavior of the button when used in an HTML form.","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"\"button\" | \"submit\" | \"reset\""}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ButtonContext.json b/apps/docs/datas/components/ButtonContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/ButtonContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/ButtonGroup.json b/apps/docs/datas/components/ButtonGroup.json deleted file mode 100644 index 45f23c15a..000000000 --- a/apps/docs/datas/components/ButtonGroup.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","description":"ButtonGroup handles the spacing and orientation for a grouping of buttons whose actions are related to each other.\n\n[View Documentation](TODO)","displayName":"ButtonGroup","methods":[],"props":{"orientation":{"defaultValue":{"value":"'horizontal'"},"description":"The axis the ButtonGroup should align with.","name":"orientation","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"isDisabled":{"defaultValue":null,"description":"Whether the Buttons in the ButtonGroup are all disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"boolean"}},"fluid":{"defaultValue":null,"description":"Whether the Buttons in the ButtonGroup are all fluid.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"size":{"defaultValue":{"value":"\"md\""},"description":"The size of the buttons in the ButtonGroup.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"wrap":{"defaultValue":{"value":"true"},"description":"Whether elements are forced onto one line or can wrap onto multiple rows.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"align":{"defaultValue":{"value":"'start'"},"description":"The alignment of the buttons within the ButtonGroup.","name":"align","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/ButtonGroup.tsx","name":"ButtonGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"center\" | \"start\" | \"end\">"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish | \"inherit\" | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ButtonGroupContext.json b/apps/docs/datas/components/ButtonGroupContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/ButtonGroupContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/Checkbox.json b/apps/docs/datas/components/Checkbox.json deleted file mode 100644 index 02ce70302..000000000 --- a/apps/docs/datas/components/Checkbox.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/Checkbox.tsx","description":"The Checkbox component indicates the selection state of an option. It displays either one of three states: checked, unchecked, or indeterminate.\n\n[View Documentation](TODO)","displayName":"Checkbox","methods":[],"props":{"size":{"defaultValue":null,"description":"A checkbox can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/Checkbox.tsx","name":"CheckboxProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/Checkbox.tsx","name":"CheckboxProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: CheckboxRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: CheckboxRenderProps) => ReactNode)"}},"validationBehavior":{"defaultValue":{"value":"'native'"},"description":"Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.","name":"validationBehavior","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"}],"required":false,"type":{"name":"\"native\" | \"aria\""}},"isIndeterminate":{"defaultValue":null,"description":"Indeterminism is presentational only.\nThe indeterminate visual representation remains regardless of user interaction.","name":"isIndeterminate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"CheckboxProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"CheckboxProps"}],"required":false,"type":{"name":"boolean"}},"defaultSelected":{"defaultValue":null,"description":"Whether the element should be selected (uncontrolled).","name":"defaultSelected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"boolean"}},"isSelected":{"defaultValue":null,"description":"Whether the element should be selected (controlled).","name":"isSelected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"boolean"}},"onChange":{"defaultValue":null,"description":"Handler that is called when the element's selection state changes.","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"(isSelected: boolean) => void"}},"value":{"defaultValue":null,"description":"The value of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefvalue).","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"ToggleProps"}],"required":false,"type":{"name":"string"}},"isDisabled":{"defaultValue":null,"description":"Whether the input is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"isReadOnly":{"defaultValue":null,"description":"Whether the input can be selected but not changed by the user.","name":"isReadOnly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"isRequired":{"defaultValue":null,"description":"Whether user input is required on the input before form submission.","name":"isRequired","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"isInvalid":{"defaultValue":null,"description":"Whether the input value is invalid.","name":"isInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"validate":{"defaultValue":null,"description":"A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.","name":"validate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"(value: boolean) => true | ValidationError"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"AriaToggleProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+checkbox@3.7.1_react@18.2.0/node_modules/@react-types/checkbox/src/index.d.ts","name":"AriaToggleProps"}],"required":false,"type":{"name":"string"}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"}],"required":false,"type":{"name":"string"}},"name":{"defaultValue":null,"description":"The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: CheckboxRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxContext.json b/apps/docs/datas/components/CheckboxContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/CheckboxContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxField.json b/apps/docs/datas/components/CheckboxField.json deleted file mode 100644 index b4bb10a37..000000000 --- a/apps/docs/datas/components/CheckboxField.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","description":"The Checkbox Field component is a container for a checkbox and a description.\n\n[View Documentation](TODO)","displayName":"CheckboxField","methods":[],"props":{"isDisabled":{"defaultValue":null,"description":"Whether the checkbox field is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"}],"required":false,"type":{"name":"boolean"}},"size":{"defaultValue":null,"description":"A checkbox can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxField.tsx","name":"CheckboxFieldProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxFieldContext.json b/apps/docs/datas/components/CheckboxFieldContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/CheckboxFieldContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxGroup.json b/apps/docs/datas/components/CheckboxGroup.json deleted file mode 100644 index c407947b7..000000000 --- a/apps/docs/datas/components/CheckboxGroup.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","description":"The CheckboxGroup component is used to group multiple Checkbox or CheckboxField components together.\n\n[View Documentation](TODO)","displayName":"CheckboxGroup","methods":[],"props":{"orientation":{"defaultValue":null,"description":"A checkbox can be displayed horizontally or vertically.","name":"orientation","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"horizontal\" | \"vertical\">"}},"size":{"defaultValue":null,"description":"A checkbox can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"variant":{"defaultValue":null,"description":"A CheckboxGroup has two variants: borderless and bordered.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/checkbox/src/CheckboxGroup.tsx","name":"CheckboxGroupProps"}],"required":false,"type":{"name":"\"borderless\" | \"bordered\""}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: CheckboxGroupRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: CheckboxGroupRenderProps) => ReactNode)"}},"validationBehavior":{"defaultValue":{"value":"'native'"},"description":"Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.","name":"validationBehavior","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RACValidation"}],"required":false,"type":{"name":"\"native\" | \"aria\""}},"value":{"defaultValue":null,"description":"The current value (controlled).","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"}],"required":false,"type":{"name":"string[]"}},"defaultValue":{"defaultValue":null,"description":"The default value (uncontrolled).","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"}],"required":false,"type":{"name":"string[]"}},"onChange":{"defaultValue":null,"description":"Handler that is called when the value changes.","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"ValueBase"}],"required":false,"type":{"name":"(value: string[]) => void"}},"isDisabled":{"defaultValue":null,"description":"Whether the input is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"isReadOnly":{"defaultValue":null,"description":"Whether the input can be selected but not changed by the user.","name":"isReadOnly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"InputBase"}],"required":false,"type":{"name":"boolean"}},"name":{"defaultValue":null,"description":"The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"InputDOMProps"}],"required":false,"type":{"name":"string"}},"isRequired":{"defaultValue":null,"description":"Whether user input is required on the input before form submission.","name":"isRequired","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"isInvalid":{"defaultValue":null,"description":"Whether the input value is invalid.","name":"isInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"boolean"}},"validate":{"defaultValue":null,"description":"A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.","name":"validate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts","name":"Validation"}],"required":false,"type":{"name":"(value: string[]) => true | ValidationError"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaValidationProps"}],"required":false,"type":{"name":"string"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: CheckboxGroupRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxGroupContext.json b/apps/docs/datas/components/CheckboxGroupContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/CheckboxGroupContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxList.json b/apps/docs/datas/components/CheckboxList.json deleted file mode 100644 index 607657b57..000000000 --- a/apps/docs/datas/components/CheckboxList.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/checkbox/src/CheckboxList.tsx","description":"The Checkbox List component is a container for a group of checkboxes.\n\n[View Documentation](TODO)","displayName":"CheckboxList","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/CheckboxListContext.json b/apps/docs/datas/components/CheckboxListContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/CheckboxListContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/ClearSlots.json b/apps/docs/datas/components/ClearSlots.json deleted file mode 100644 index 63a708509..000000000 --- a/apps/docs/datas/components/ClearSlots.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","description":"Writing slots in a component can be a bit tricky. This component is a utility that allows you to clear the slots of a component.\n\nFor instance: In a dialog, slots could apply specific styles to a Divider divider between the heading and the content.\nIf someone wanted to make a two column layout in their content and use a Divider, they'd need to do some work to get rid of the class name the dialog applies.\n\nThere are a few reasons why you might want to clear slots:\n- You're trying to make a component that is a container for other components, and you don't want anything set above to affect your content.\n- You're trying to specify a different slot provider inside","displayName":"ClearProviders","methods":[],"props":{"values":{"defaultValue":null,"description":"The list of providers to clear.","name":"values","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","name":"ClearProvidersProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","name":"ClearProvidersProps"}],"required":true,"type":{"name":"Context>[]"}}}},{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/ClearSlots.tsx","description":"Most of the time, you won't need to use this component. It's mostly useful for when you're trying to make a component that is a container for other components, and you don't want anything set above to affect your content.","displayName":"ClearContainerSlots","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ErrorMessage.json b/apps/docs/datas/components/ErrorMessage.json deleted file mode 100644 index 1fbc9ea6f..000000000 --- a/apps/docs/datas/components/ErrorMessage.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/errorMessage/src/ErrorMessage.tsx","description":"An ErrorMessage displays validation errors for a form field.\n\n[View Documentation](TODO)","displayName":"ErrorMessage","methods":[],"props":{"hideIcon":{"defaultValue":{"value":"true"},"description":"Whether or not to hide the error message icon.","name":"hideIcon","parent":{"fileName":"wl-hopper/packages/components/src/errorMessage/src/ErrorMessage.tsx","name":"ErrorMessageProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/errorMessage/src/ErrorMessage.tsx","name":"ErrorMessageProps"}],"required":false,"type":{"name":"boolean"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: FieldErrorRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: FieldErrorRenderProps) => ReactNode)"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: FieldErrorRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"elementType":{"defaultValue":null,"description":"","name":"elementType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"inline\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"move\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"size":{"defaultValue":{"value":"\"md\""},"description":"The Typography Type Scale to use.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/ErrorMessageContext.json b/apps/docs/datas/components/ErrorMessageContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/ErrorMessageContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/Flex.json b/apps/docs/datas/components/Flex.json deleted file mode 100644 index 1e1ef0afd..000000000 --- a/apps/docs/datas/components/Flex.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Flex.tsx","description":"The Flex component is used to create a flex container and provides some shortcuts for the flex properties.\n\n[View Documentation](TODO)","displayName":"Flex","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"inline\" | \"none\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"direction":{"defaultValue":null,"description":"The flex direction of the container. Can be row, column, row-reverse or column-reverse.","name":"direction","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wrap":{"defaultValue":null,"description":"Whether to wrap the flex items. The value can also be a boolean.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp | ResponsiveProp"}},"basis":{"defaultValue":null,"description":"An alias for the css flex-basis property.","name":"basis","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"grow":{"defaultValue":null,"description":"An alias for the css flex-grow property.","name":"grow","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"shrink":{"defaultValue":null,"description":"An alias for the css flex-shrink property.","name":"shrink","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"inline":{"defaultValue":null,"description":"Whether to display the flex container as an inline element.","name":"inline","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"boolean"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Grid.json b/apps/docs/datas/components/Grid.json deleted file mode 100644 index 5be90dc63..000000000 --- a/apps/docs/datas/components/Grid.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{"param":"count - The number of times to repeat the fragment.\nrepeat - The fragment to repeat."},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Grid.tsx","description":"Can be used to make a repeating fragment of the columns or rows list.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/repeat).","displayName":"Inline","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/HelperMessage.json b/apps/docs/datas/components/HelperMessage.json deleted file mode 100644 index 23c4581f6..000000000 --- a/apps/docs/datas/components/HelperMessage.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/helperMessage/src/HelperMessage.tsx","description":"The HelperMessage component is used to display auxiliary text to guide users in the interface.\n\n[View Documentation](TODO)","displayName":"HelperMessage","methods":[],"props":{"hideIcon":{"defaultValue":{"value":"true"},"description":"Whether or not to hide the helper message icon.","name":"hideIcon","parent":{"fileName":"wl-hopper/packages/components/src/helperMessage/src/HelperMessage.tsx","name":"HelperMessageProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/helperMessage/src/HelperMessage.tsx","name":"HelperMessageProps"}],"required":false,"type":{"name":"boolean"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"elementType":{"defaultValue":null,"description":"","name":"elementType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish | \"inherit\" | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/HelperMessageContext.json b/apps/docs/datas/components/HelperMessageContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/HelperMessageContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/HopperProvider.json b/apps/docs/datas/components/HopperProvider.json deleted file mode 100644 index 8024f4c0e..000000000 --- a/apps/docs/datas/components/HopperProvider.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","description":"HopperProvider is required to be rendered at the root of your application. It is responsible for:\n- Adding CSS variables to the document\n- Managing color scheme (light, dark, auto)\n- Optionally adding body styles to the document\n\n[View Documentation](TODO)","displayName":"HopperProvider","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"inline\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"children":{"defaultValue":null,"description":"The children of the component","name":"children","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":true,"type":{"name":"ReactNode"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"locale":{"defaultValue":null,"description":"The The BCP47 language code for the locale.\n@example \"en-US\"","name":"locale","parent":{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"}],"required":false,"type":{"name":"string"}},"navigate":{"defaultValue":null,"description":"Set this up once in the root of your app, and any Hopper component with the href prop will automatically navigate using your router.","name":"navigate","parent":{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/HopperProvider/src/HopperProvider.tsx","name":"HopperProviderProps"}],"required":false,"type":{"name":"(path: string) => void"}},"withBodyStyle":{"defaultValue":null,"description":"Determines whether the styles should be added to the document's body\nBy default, it is set to `false`. If set to `true`, it will apply additional styling to the document's body.","name":"withBodyStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":false,"type":{"name":"boolean"}},"colorScheme":{"defaultValue":null,"description":"The color scheme to use.","name":"colorScheme","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":true,"type":{"name":"ColorSchemeOrSystem"}},"defaultColorScheme":{"defaultValue":null,"description":"Default color scheme to use when a user preferred color scheme (system) is not available.","name":"defaultColorScheme","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":false,"type":{"name":"ColorScheme"}},"withCssVariables":{"defaultValue":null,"description":"Determines whether token CSS variables should be added to the document's head\nBy default, it is set to `true`, you should not change it unless you want to manage CSS variables via `.css` files","name":"withCssVariables","parent":{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/StyledSystemProvider.d.ts","name":"StyledSystemProviderProps"}],"required":false,"type":{"name":"boolean"}},"unsupportedMatchMediaBreakpoint":{"defaultValue":null,"description":"","name":"unsupportedMatchMediaBreakpoint","parent":{"fileName":"wl-hopper/packages/styled-system/dist/responsive/BreakpointProvider.d.ts","name":"BreakpointProviderProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/responsive/BreakpointProvider.d.ts","name":"BreakpointProviderProps"}],"required":false,"type":{"name":"Breakpoint"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/IconList.json b/apps/docs/datas/components/IconList.json deleted file mode 100644 index b410d7c01..000000000 --- a/apps/docs/datas/components/IconList.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/IconList/src/IconList.tsx","description":"A component that allows you to render a list of icons\n\n[View Documentation](TODO)","displayName":"IconList","methods":[],"props":{"size":{"defaultValue":null,"description":"The size of the icon.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/IconList/src/IconList.tsx","name":"IconListProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/IconList/src/IconList.tsx","name":"IconListProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\" | \"lg\">"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/IconListContext.json b/apps/docs/datas/components/IconListContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/IconListContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/Inline.json b/apps/docs/datas/components/Inline.json deleted file mode 100644 index ed64d263f..000000000 --- a/apps/docs/datas/components/Inline.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Inline.tsx","description":"The Inline pattern is a layout primitive that can be used to stack elements in the horizontal direction and apply a space between them.\n\n[View Documentation](TODO)","displayName":"Inline","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"inline\" | \"none\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"wrap":{"defaultValue":null,"description":"Whether to wrap the flex items. The value can also be a boolean.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp | ResponsiveProp"}},"basis":{"defaultValue":null,"description":"An alias for the css flex-basis property.","name":"basis","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"grow":{"defaultValue":null,"description":"An alias for the css flex-grow property.","name":"grow","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"shrink":{"defaultValue":null,"description":"An alias for the css flex-shrink property.","name":"shrink","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"inline":{"defaultValue":null,"description":"Whether to display the flex container as an inline element.","name":"inline","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"boolean"}},"reverse":{"defaultValue":null,"description":"Whether or not to reverse the order of the elements.","name":"reverse","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"}],"required":false,"type":{"name":"boolean"}},"alignX":{"defaultValue":null,"description":"An alias for the css justify-content property.","name":"alignX","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignY":{"defaultValue":null,"description":"An alias for the css align-items property.","name":"alignY","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Inline.tsx","name":"InlineProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Label.json b/apps/docs/datas/components/Label.json deleted file mode 100644 index c62fecc21..000000000 --- a/apps/docs/datas/components/Label.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Label/src/Label.tsx","description":"A primitive label component matching Hopper's typography type scale.\n\n[View Documentation](TODO)","displayName":"Label","methods":[],"props":{"size":{"defaultValue":{"value":"\"md\""},"description":"The Typography Type Scale to use.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Label/src/Label.tsx","name":"LabelProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Label/src/Label.tsx","name":"LabelProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"form":{"defaultValue":null,"description":"","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"htmlFor":{"defaultValue":null,"description":"","name":"htmlFor","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"LabelHTMLAttributes"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/LabelContext.json b/apps/docs/datas/components/LabelContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/LabelContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/Link.json b/apps/docs/datas/components/Link.json deleted file mode 100644 index bdd6b5f72..000000000 --- a/apps/docs/datas/components/Link.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Link/src/Link.tsx","description":"Links allow users to navigate to a different location. They can be presented inline inside a paragraph, as standalone text or as an image.\n\n[View Documentation](TODO)","displayName":"Link","methods":[],"props":{"variant":{"defaultValue":null,"description":"The visual style of the link.","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\""}},"size":{"defaultValue":null,"description":"Size of the link.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"isQuiet":{"defaultValue":null,"description":"Whether the link should be displayed with a quiet style.","name":"isQuiet","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"boolean"}},"isExternal":{"defaultValue":null,"description":"Whether the link should open in a new tab.","name":"isExternal","parent":{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Link/src/Link.tsx","name":"LinkProps"}],"required":false,"type":{"name":"boolean"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: LinkRenderProps) => CSSProperties)"}},"isDisabled":{"defaultValue":null,"description":"Whether the link is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-aria+link@3.6.5_react@18.2.0/node_modules/@react-aria/link/dist/types.d.ts","name":"AriaLinkOptions"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-aria+link@3.6.5_react@18.2.0/node_modules/@react-aria/link/dist/types.d.ts","name":"AriaLinkOptions"}],"required":false,"type":{"name":"boolean"}},"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"href":{"defaultValue":null,"description":"A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).","name":"href","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).","name":"target","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"HTMLAttributeAnchorTarget"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string"}},"download":{"defaultValue":null,"description":"Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).","name":"download","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string | boolean"}},"ping":{"defaultValue":null,"description":"A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).","name":"ping","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"string"}},"referrerPolicy":{"defaultValue":null,"description":"How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).","name":"referrerPolicy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"LinkDOMProps"}],"required":false,"type":{"name":"HTMLAttributeReferrerPolicy"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: LinkRenderProps) => ReactNode)"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: LinkRenderProps) => string)"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/LinkContext.json b/apps/docs/datas/components/LinkContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/LinkContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/SlotProvider.json b/apps/docs/datas/components/SlotProvider.json deleted file mode 100644 index c6934d189..000000000 --- a/apps/docs/datas/components/SlotProvider.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/SlotProvider.ts","description":"In complex components, you may need to provide many contexts. The SlotProvider component is a utility that makes it\neasier to provide multiple React contexts without manually nesting them.\n This can be achieved by passing pairs of contexts and values as an array to the values prop.\n\n[View Documentation](TODO)","displayName":"SlotProvider","methods":[],"props":{"values":{"defaultValue":null,"description":"","name":"values","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ProviderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ProviderProps"}],"required":true,"type":{"name":"ProviderValues"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Spinner.json b/apps/docs/datas/components/Spinner.json deleted file mode 100644 index b3ee9274a..000000000 --- a/apps/docs/datas/components/Spinner.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Spinner/src/Spinner.tsx","description":"A spinner indicates that a part of the product is currently performing a task, and the duration of this process is unknown.\n\n[View Documentation](TODO)","displayName":"Spinner","methods":[],"props":{"size":{"defaultValue":null,"description":"What the Spinner's diameter should be.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Spinner/src/Spinner.tsx","name":"SpinnerProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Spinner/src/Spinner.tsx","name":"SpinnerProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\" | \"lg\">"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"children":{"defaultValue":null,"description":"The children of the component.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"DOMProps"}],"required":false,"type":{"name":"ReactNode"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleProps"}],"required":false,"type":{"name":"CSSProperties"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/SpinnerContext.json b/apps/docs/datas/components/SpinnerContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/SpinnerContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/Stack.json b/apps/docs/datas/components/Stack.json deleted file mode 100644 index dd5db2f18..000000000 --- a/apps/docs/datas/components/Stack.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/layout/src/Stack.tsx","description":"The Stack pattern is a layout primitive that can be used to stack elements in the vertical direction and apply a space between them.\n\n[View Documentation](TODO)","displayName":"Stack","methods":[],"props":{"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"none\" | \"text\" | \"search\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"inline\" | \"none\" | \"both\" | \"list\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"copy\" | \"move\" | \"link\" | \"execute\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"grid\" | \"true\" | \"false\" | \"dialog\" | \"listbox\" | \"menu\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"wrap":{"defaultValue":null,"description":"Whether to wrap the flex items. The value can also be a boolean.","name":"wrap","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp | ResponsiveProp"}},"basis":{"defaultValue":null,"description":"An alias for the css flex-basis property.","name":"basis","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"grow":{"defaultValue":null,"description":"An alias for the css flex-grow property.","name":"grow","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"shrink":{"defaultValue":null,"description":"An alias for the css flex-shrink property.","name":"shrink","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"inline":{"defaultValue":null,"description":"Whether to display the flex container as an inline element.","name":"inline","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Flex.tsx","name":"FlexProps"}],"required":false,"type":{"name":"boolean"}},"reverse":{"defaultValue":null,"description":"Whether or not to reverse the order of the elements.","name":"reverse","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"}],"required":false,"type":{"name":"boolean"}},"alignX":{"defaultValue":null,"description":"An alias for the css align-items property.","name":"alignX","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignY":{"defaultValue":null,"description":"An alias for the css justify-content property.","name":"alignY","parent":{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/layout/src/Stack.tsx","name":"StackProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/Text.json b/apps/docs/datas/components/Text.json deleted file mode 100644 index 5b52d9437..000000000 --- a/apps/docs/datas/components/Text.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/Text/src/Text.tsx","description":"A primitive text component matching Hopper's typography type scale.\n\n[View Documentation](TODO)","displayName":"Text","methods":[],"props":{"size":{"defaultValue":{"value":"\"md\""},"description":"The Typography Type Scale to use.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/Text/src/Text.tsx","name":"TextProps"}],"required":false,"type":{"name":"ResponsiveProp<\"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"inherit\" | \"2xl\">"}},"slot":{"defaultValue":null,"description":"","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"CSSProperties"}},"title":{"defaultValue":null,"description":"","name":"title","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"elementType":{"defaultValue":null,"description":"","name":"elementType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"TextProps"}],"required":false,"type":{"name":"string"}},"defaultChecked":{"defaultValue":null,"description":"","name":"defaultChecked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"defaultValue":{"defaultValue":null,"description":"","name":"defaultValue","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string | number | readonly string[]"}},"suppressContentEditableWarning":{"defaultValue":null,"description":"","name":"suppressContentEditableWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"suppressHydrationWarning":{"defaultValue":null,"description":"","name":"suppressHydrationWarning","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"accessKey":{"defaultValue":null,"description":"","name":"accessKey","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoFocus":{"defaultValue":null,"description":"","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"className":{"defaultValue":null,"description":"","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"contentEditable":{"defaultValue":null,"description":"","name":"contentEditable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"inherit\" | Booleanish | \"plaintext-only\""}},"contextMenu":{"defaultValue":null,"description":"","name":"contextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"dir":{"defaultValue":null,"description":"","name":"dir","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"draggable":{"defaultValue":null,"description":"","name":"draggable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"hidden":{"defaultValue":null,"description":"","name":"hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"lang":{"defaultValue":null,"description":"","name":"lang","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"nonce":{"defaultValue":null,"description":"","name":"nonce","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"spellCheck":{"defaultValue":null,"description":"","name":"spellCheck","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"Booleanish"}},"tabIndex":{"defaultValue":null,"description":"","name":"tabIndex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"translate":{"defaultValue":null,"description":"","name":"translate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"yes\" | \"no\""}},"radioGroup":{"defaultValue":null,"description":"","name":"radioGroup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"role":{"defaultValue":null,"description":"","name":"role","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"AriaRole"}},"about":{"defaultValue":null,"description":"","name":"about","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"datatype":{"defaultValue":null,"description":"","name":"datatype","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"inlist":{"defaultValue":null,"description":"","name":"inlist","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"any"}},"prefix":{"defaultValue":null,"description":"","name":"prefix","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"property":{"defaultValue":null,"description":"","name":"property","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"","name":"rel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"resource":{"defaultValue":null,"description":"","name":"resource","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"rev":{"defaultValue":null,"description":"","name":"rev","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"typeof":{"defaultValue":null,"description":"","name":"typeof","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"vocab":{"defaultValue":null,"description":"","name":"vocab","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCapitalize":{"defaultValue":null,"description":"","name":"autoCapitalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoCorrect":{"defaultValue":null,"description":"","name":"autoCorrect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"autoSave":{"defaultValue":null,"description":"","name":"autoSave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemProp":{"defaultValue":null,"description":"","name":"itemProp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemScope":{"defaultValue":null,"description":"","name":"itemScope","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"boolean"}},"itemType":{"defaultValue":null,"description":"","name":"itemType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemID":{"defaultValue":null,"description":"","name":"itemID","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"itemRef":{"defaultValue":null,"description":"","name":"itemRef","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"results":{"defaultValue":null,"description":"","name":"results","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"number"}},"security":{"defaultValue":null,"description":"","name":"security","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"unselectable":{"defaultValue":null,"description":"","name":"unselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"on\" | \"off\""}},"inputMode":{"defaultValue":null,"description":"Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}","name":"inputMode","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\""}},"is":{"defaultValue":null,"description":"Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}","name":"is","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"HTMLAttributes"}],"required":false,"type":{"name":"string"}},"aria-activedescendant":{"defaultValue":null,"description":"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.","name":"aria-activedescendant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-atomic":{"defaultValue":null,"description":"Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.","name":"aria-atomic","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-autocomplete":{"defaultValue":null,"description":"Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.","name":"aria-autocomplete","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"list\" | \"none\" | \"inline\" | \"both\""}},"aria-braillelabel":{"defaultValue":null,"description":"Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.","name":"aria-braillelabel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-brailleroledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.","name":"aria-brailleroledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-busy":{"defaultValue":null,"description":"","name":"aria-busy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-checked":{"defaultValue":null,"description":"Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.","name":"aria-checked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-colcount":{"defaultValue":null,"description":"Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.","name":"aria-colcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindex":{"defaultValue":null,"description":"Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.","name":"aria-colindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-colindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.","name":"aria-colindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-colspan":{"defaultValue":null,"description":"Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.","name":"aria-colspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-current":{"defaultValue":null,"description":"Indicates the element that represents the current item within a container or set of related elements.","name":"aria-current","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\""}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.\n@see aria-labelledby","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-description":{"defaultValue":null,"description":"Defines a string value that describes or annotates the current element.\n@see related aria-describedby.","name":"aria-description","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-disabled":{"defaultValue":null,"description":"Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.","name":"aria-disabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-dropeffect":{"defaultValue":null,"description":"Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1","name":"aria-dropeffect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\""}},"aria-errormessage":{"defaultValue":null,"description":"Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.","name":"aria-errormessage","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-flowto":{"defaultValue":null,"description":"Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.","name":"aria-flowto","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-grabbed":{"defaultValue":null,"description":"Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1","name":"aria-grabbed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-hidden":{"defaultValue":null,"description":"Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.","name":"aria-hidden","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-invalid":{"defaultValue":null,"description":"Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.","name":"aria-invalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\""}},"aria-keyshortcuts":{"defaultValue":null,"description":"Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.","name":"aria-keyshortcuts","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.\n@see aria-labelledby.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.\n@see aria-describedby.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-level":{"defaultValue":null,"description":"Defines the hierarchical level of an element within a structure.","name":"aria-level","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-live":{"defaultValue":null,"description":"Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.","name":"aria-live","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"off\" | \"assertive\" | \"polite\""}},"aria-modal":{"defaultValue":null,"description":"Indicates whether an element is modal when displayed.","name":"aria-modal","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiline":{"defaultValue":null,"description":"Indicates whether a text box accepts multiple lines of input or only a single line.","name":"aria-multiline","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-multiselectable":{"defaultValue":null,"description":"Indicates that the user may select more than one item from the current selectable descendants.","name":"aria-multiselectable","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-orientation":{"defaultValue":null,"description":"Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.","name":"aria-orientation","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"horizontal\" | \"vertical\""}},"aria-owns":{"defaultValue":null,"description":"Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.","name":"aria-owns","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-placeholder":{"defaultValue":null,"description":"Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.","name":"aria-placeholder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-posinset":{"defaultValue":null,"description":"Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.","name":"aria-posinset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"aria-readonly":{"defaultValue":null,"description":"Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.","name":"aria-readonly","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-relevant":{"defaultValue":null,"description":"Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.","name":"aria-relevant","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\""}},"aria-required":{"defaultValue":null,"description":"Indicates that user input is required on the element before a form may be submitted.","name":"aria-required","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-roledescription":{"defaultValue":null,"description":"Defines a human-readable, author-localized description for the role of an element.","name":"aria-roledescription","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowcount":{"defaultValue":null,"description":"Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.","name":"aria-rowcount","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindex":{"defaultValue":null,"description":"Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.","name":"aria-rowindex","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-rowindextext":{"defaultValue":null,"description":"Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.","name":"aria-rowindextext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"aria-rowspan":{"defaultValue":null,"description":"Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.","name":"aria-rowspan","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-selected":{"defaultValue":null,"description":"Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.","name":"aria-selected","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"Booleanish"}},"aria-setsize":{"defaultValue":null,"description":"Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.","name":"aria-setsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-sort":{"defaultValue":null,"description":"Indicates if items in a table or grid are sorted in ascending or descending order.","name":"aria-sort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"\"none\" | \"ascending\" | \"descending\" | \"other\""}},"aria-valuemax":{"defaultValue":null,"description":"Defines the maximum allowed value for a range widget.","name":"aria-valuemax","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuemin":{"defaultValue":null,"description":"Defines the minimum allowed value for a range widget.","name":"aria-valuemin","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuenow":{"defaultValue":null,"description":"Defines the current value for a range widget.\n@see aria-valuetext.","name":"aria-valuenow","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"number"}},"aria-valuetext":{"defaultValue":null,"description":"Defines the human readable text alternative of aria-valuenow for a range widget.","name":"aria-valuetext","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"AriaAttributes"}],"required":false,"type":{"name":"string"}},"dangerouslySetInnerHTML":{"defaultValue":null,"description":"","name":"dangerouslySetInnerHTML","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"{ __html: string | TrustedHTML; }"}},"onCopy":{"defaultValue":null,"description":"","name":"onCopy","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCopyCapture":{"defaultValue":null,"description":"","name":"onCopyCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCut":{"defaultValue":null,"description":"","name":"onCut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCutCapture":{"defaultValue":null,"description":"","name":"onCutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPaste":{"defaultValue":null,"description":"","name":"onPaste","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onPasteCapture":{"defaultValue":null,"description":"","name":"onPasteCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ClipboardEventHandler"}},"onCompositionEnd":{"defaultValue":null,"description":"","name":"onCompositionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionEndCapture":{"defaultValue":null,"description":"","name":"onCompositionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStart":{"defaultValue":null,"description":"","name":"onCompositionStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionStartCapture":{"defaultValue":null,"description":"","name":"onCompositionStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdate":{"defaultValue":null,"description":"","name":"onCompositionUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onCompositionUpdateCapture":{"defaultValue":null,"description":"","name":"onCompositionUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"CompositionEventHandler"}},"onFocus":{"defaultValue":null,"description":"","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onFocusCapture":{"defaultValue":null,"description":"","name":"onFocusCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlur":{"defaultValue":null,"description":"","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onBlurCapture":{"defaultValue":null,"description":"","name":"onBlurCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FocusEventHandler"}},"onChange":{"defaultValue":null,"description":"","name":"onChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onChangeCapture":{"defaultValue":null,"description":"","name":"onChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInput":{"defaultValue":null,"description":"","name":"onBeforeInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onBeforeInputCapture":{"defaultValue":null,"description":"","name":"onBeforeInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInput":{"defaultValue":null,"description":"","name":"onInput","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInputCapture":{"defaultValue":null,"description":"","name":"onInputCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onReset":{"defaultValue":null,"description":"","name":"onReset","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onResetCapture":{"defaultValue":null,"description":"","name":"onResetCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmit":{"defaultValue":null,"description":"","name":"onSubmit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onSubmitCapture":{"defaultValue":null,"description":"","name":"onSubmitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalid":{"defaultValue":null,"description":"","name":"onInvalid","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onInvalidCapture":{"defaultValue":null,"description":"","name":"onInvalidCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"FormEventHandler"}},"onLoad":{"defaultValue":null,"description":"","name":"onLoad","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadCapture":{"defaultValue":null,"description":"","name":"onLoadCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onError":{"defaultValue":null,"description":"","name":"onError","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onErrorCapture":{"defaultValue":null,"description":"","name":"onErrorCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onKeyDown":{"defaultValue":null,"description":"","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyDownCapture":{"defaultValue":null,"description":"","name":"onKeyDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPress":{"defaultValue":null,"description":"@deprecated","name":"onKeyPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyPressCapture":{"defaultValue":null,"description":"@deprecated","name":"onKeyPressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUp":{"defaultValue":null,"description":"","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onKeyUpCapture":{"defaultValue":null,"description":"","name":"onKeyUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"KeyboardEventHandler"}},"onAbort":{"defaultValue":null,"description":"","name":"onAbort","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAbortCapture":{"defaultValue":null,"description":"","name":"onAbortCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlay":{"defaultValue":null,"description":"","name":"onCanPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayCapture":{"defaultValue":null,"description":"","name":"onCanPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThrough":{"defaultValue":null,"description":"","name":"onCanPlayThrough","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onCanPlayThroughCapture":{"defaultValue":null,"description":"","name":"onCanPlayThroughCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChange":{"defaultValue":null,"description":"","name":"onDurationChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onDurationChangeCapture":{"defaultValue":null,"description":"","name":"onDurationChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptied":{"defaultValue":null,"description":"","name":"onEmptied","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEmptiedCapture":{"defaultValue":null,"description":"","name":"onEmptiedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncrypted":{"defaultValue":null,"description":"","name":"onEncrypted","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEncryptedCapture":{"defaultValue":null,"description":"","name":"onEncryptedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEnded":{"defaultValue":null,"description":"","name":"onEnded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onEndedCapture":{"defaultValue":null,"description":"","name":"onEndedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedData":{"defaultValue":null,"description":"","name":"onLoadedData","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedDataCapture":{"defaultValue":null,"description":"","name":"onLoadedDataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadata":{"defaultValue":null,"description":"","name":"onLoadedMetadata","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadedMetadataCapture":{"defaultValue":null,"description":"","name":"onLoadedMetadataCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStart":{"defaultValue":null,"description":"","name":"onLoadStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onLoadStartCapture":{"defaultValue":null,"description":"","name":"onLoadStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPause":{"defaultValue":null,"description":"","name":"onPause","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPauseCapture":{"defaultValue":null,"description":"","name":"onPauseCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlay":{"defaultValue":null,"description":"","name":"onPlay","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayCapture":{"defaultValue":null,"description":"","name":"onPlayCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlaying":{"defaultValue":null,"description":"","name":"onPlaying","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onPlayingCapture":{"defaultValue":null,"description":"","name":"onPlayingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgress":{"defaultValue":null,"description":"","name":"onProgress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onProgressCapture":{"defaultValue":null,"description":"","name":"onProgressCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChange":{"defaultValue":null,"description":"","name":"onRateChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onRateChangeCapture":{"defaultValue":null,"description":"","name":"onRateChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResize":{"defaultValue":null,"description":"","name":"onResize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onResizeCapture":{"defaultValue":null,"description":"","name":"onResizeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeked":{"defaultValue":null,"description":"","name":"onSeeked","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekedCapture":{"defaultValue":null,"description":"","name":"onSeekedCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeeking":{"defaultValue":null,"description":"","name":"onSeeking","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSeekingCapture":{"defaultValue":null,"description":"","name":"onSeekingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalled":{"defaultValue":null,"description":"","name":"onStalled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onStalledCapture":{"defaultValue":null,"description":"","name":"onStalledCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspend":{"defaultValue":null,"description":"","name":"onSuspend","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSuspendCapture":{"defaultValue":null,"description":"","name":"onSuspendCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdate":{"defaultValue":null,"description":"","name":"onTimeUpdate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTimeUpdateCapture":{"defaultValue":null,"description":"","name":"onTimeUpdateCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChange":{"defaultValue":null,"description":"","name":"onVolumeChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onVolumeChangeCapture":{"defaultValue":null,"description":"","name":"onVolumeChangeCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaiting":{"defaultValue":null,"description":"","name":"onWaiting","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onWaitingCapture":{"defaultValue":null,"description":"","name":"onWaitingCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onAuxClick":{"defaultValue":null,"description":"","name":"onAuxClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onAuxClickCapture":{"defaultValue":null,"description":"","name":"onAuxClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClick":{"defaultValue":null,"description":"","name":"onClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onClickCapture":{"defaultValue":null,"description":"","name":"onClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenu":{"defaultValue":null,"description":"","name":"onContextMenu","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onContextMenuCapture":{"defaultValue":null,"description":"","name":"onContextMenuCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClick":{"defaultValue":null,"description":"","name":"onDoubleClick","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDoubleClickCapture":{"defaultValue":null,"description":"","name":"onDoubleClickCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onDrag":{"defaultValue":null,"description":"","name":"onDrag","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragCapture":{"defaultValue":null,"description":"","name":"onDragCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnd":{"defaultValue":null,"description":"","name":"onDragEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEndCapture":{"defaultValue":null,"description":"","name":"onDragEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnter":{"defaultValue":null,"description":"","name":"onDragEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragEnterCapture":{"defaultValue":null,"description":"","name":"onDragEnterCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExit":{"defaultValue":null,"description":"","name":"onDragExit","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragExitCapture":{"defaultValue":null,"description":"","name":"onDragExitCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeave":{"defaultValue":null,"description":"","name":"onDragLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragLeaveCapture":{"defaultValue":null,"description":"","name":"onDragLeaveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOver":{"defaultValue":null,"description":"","name":"onDragOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragOverCapture":{"defaultValue":null,"description":"","name":"onDragOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStart":{"defaultValue":null,"description":"","name":"onDragStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDragStartCapture":{"defaultValue":null,"description":"","name":"onDragStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDrop":{"defaultValue":null,"description":"","name":"onDrop","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onDropCapture":{"defaultValue":null,"description":"","name":"onDropCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"DragEventHandler"}},"onMouseDown":{"defaultValue":null,"description":"","name":"onMouseDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseDownCapture":{"defaultValue":null,"description":"","name":"onMouseDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseEnter":{"defaultValue":null,"description":"","name":"onMouseEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseLeave":{"defaultValue":null,"description":"","name":"onMouseLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMove":{"defaultValue":null,"description":"","name":"onMouseMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseMoveCapture":{"defaultValue":null,"description":"","name":"onMouseMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOut":{"defaultValue":null,"description":"","name":"onMouseOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOutCapture":{"defaultValue":null,"description":"","name":"onMouseOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOver":{"defaultValue":null,"description":"","name":"onMouseOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseOverCapture":{"defaultValue":null,"description":"","name":"onMouseOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUp":{"defaultValue":null,"description":"","name":"onMouseUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onMouseUpCapture":{"defaultValue":null,"description":"","name":"onMouseUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"MouseEventHandler"}},"onSelect":{"defaultValue":null,"description":"","name":"onSelect","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onSelectCapture":{"defaultValue":null,"description":"","name":"onSelectCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"ReactEventHandler"}},"onTouchCancel":{"defaultValue":null,"description":"","name":"onTouchCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchCancelCapture":{"defaultValue":null,"description":"","name":"onTouchCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEnd":{"defaultValue":null,"description":"","name":"onTouchEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchEndCapture":{"defaultValue":null,"description":"","name":"onTouchEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMove":{"defaultValue":null,"description":"","name":"onTouchMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchMoveCapture":{"defaultValue":null,"description":"","name":"onTouchMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStart":{"defaultValue":null,"description":"","name":"onTouchStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onTouchStartCapture":{"defaultValue":null,"description":"","name":"onTouchStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TouchEventHandler"}},"onPointerDown":{"defaultValue":null,"description":"","name":"onPointerDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerDownCapture":{"defaultValue":null,"description":"","name":"onPointerDownCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMove":{"defaultValue":null,"description":"","name":"onPointerMove","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerMoveCapture":{"defaultValue":null,"description":"","name":"onPointerMoveCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUp":{"defaultValue":null,"description":"","name":"onPointerUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerUpCapture":{"defaultValue":null,"description":"","name":"onPointerUpCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancel":{"defaultValue":null,"description":"","name":"onPointerCancel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerCancelCapture":{"defaultValue":null,"description":"","name":"onPointerCancelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerEnter":{"defaultValue":null,"description":"","name":"onPointerEnter","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerLeave":{"defaultValue":null,"description":"","name":"onPointerLeave","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOver":{"defaultValue":null,"description":"","name":"onPointerOver","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOverCapture":{"defaultValue":null,"description":"","name":"onPointerOverCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOut":{"defaultValue":null,"description":"","name":"onPointerOut","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onPointerOutCapture":{"defaultValue":null,"description":"","name":"onPointerOutCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCapture":{"defaultValue":null,"description":"","name":"onGotPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onGotPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onGotPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCapture":{"defaultValue":null,"description":"","name":"onLostPointerCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onLostPointerCaptureCapture":{"defaultValue":null,"description":"","name":"onLostPointerCaptureCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"PointerEventHandler"}},"onScroll":{"defaultValue":null,"description":"","name":"onScroll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onScrollCapture":{"defaultValue":null,"description":"","name":"onScrollCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"UIEventHandler"}},"onWheel":{"defaultValue":null,"description":"","name":"onWheel","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onWheelCapture":{"defaultValue":null,"description":"","name":"onWheelCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"WheelEventHandler"}},"onAnimationStart":{"defaultValue":null,"description":"","name":"onAnimationStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationStartCapture":{"defaultValue":null,"description":"","name":"onAnimationStartCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEnd":{"defaultValue":null,"description":"","name":"onAnimationEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationEndCapture":{"defaultValue":null,"description":"","name":"onAnimationEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIteration":{"defaultValue":null,"description":"","name":"onAnimationIteration","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onAnimationIterationCapture":{"defaultValue":null,"description":"","name":"onAnimationIterationCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"AnimationEventHandler"}},"onTransitionEnd":{"defaultValue":null,"description":"","name":"onTransitionEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"onTransitionEndCapture":{"defaultValue":null,"description":"","name":"onTransitionEndCapture","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"DOMAttributes"}],"required":false,"type":{"name":"TransitionEventHandler"}},"alignContent":{"defaultValue":null,"description":"Sets the `align-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-content}","name":"alignContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignItems":{"defaultValue":null,"description":"Sets the `align-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-items}","name":"alignItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"alignSelf":{"defaultValue":null,"description":"Sets the `align-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/align-self}","name":"alignSelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"aspectRatio":{"defaultValue":null,"description":"Sets the `aspect-ratio` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/aspect-ratio}","name":"aspectRatio","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_backgroundColor`** property","name":"backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundImage":{"defaultValue":null,"description":"Sets the `background-image` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-image}","name":"backgroundImage","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundPosition":{"defaultValue":null,"description":"Sets the `background-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-position}","name":"backgroundPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"backgroundRepeat":{"defaultValue":null,"description":"Sets the `background-repeat` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-repeat}","name":"backgroundRepeat","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"backgroundSize":{"defaultValue":null,"description":"Sets the `background-size` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/background-size}","name":"backgroundSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"border":{"defaultValue":null,"description":"Sets the `border` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottom`** property","name":"borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomLeftRadius`** property","name":"borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderBottomRightRadius`** property","name":"borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_border`** property","name":"borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderLeft`** property","name":"borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRadius`** property","name":"borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderRight`** property","name":"borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTop`** property","name":"borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopLeftRadius`** property","name":"borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_borderTopRightRadius`** property","name":"borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"bottom":{"defaultValue":null,"description":"Sets the `bottom` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/bottom}","name":"bottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_boxShadow`** property","name":"boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"color":{"defaultValue":null,"description":"Sets the `color` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_color`** property","name":"colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_columnGap`** property","name":"columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"content":{"defaultValue":null,"description":"Sets the `content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content}","name":"content","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"contentVisibility":{"defaultValue":null,"description":"Sets the `content-visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/content-visibility}","name":"contentVisibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursor":{"defaultValue":null,"description":"Sets the `cursor` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"cursorHover":{"defaultValue":null,"description":"Sets the `cursor` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/cursor}","name":"cursorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"display":{"defaultValue":null,"description":"Sets the `display` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/display}","name":"display","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fill":{"defaultValue":null,"description":"Sets the `fill` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fill`** property","name":"fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"filter":{"defaultValue":null,"description":"Sets the `filter` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/filter}","name":"filter","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flex":{"defaultValue":null,"description":"Sets the `flex` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex}","name":"flex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexBasis":{"defaultValue":null,"description":"Sets the `flex-basis` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-basis}","name":"flexBasis","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"flexDirection":{"defaultValue":null,"description":"Sets the `flex-direction` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-direction}","name":"flexDirection","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexFlow":{"defaultValue":null,"description":"Sets the `flex-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-flow}","name":"flexFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexGrow":{"defaultValue":null,"description":"Sets the `flex-grow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-grow}","name":"flexGrow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexShrink":{"defaultValue":null,"description":"Sets the `flex-shrink` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-shrink}","name":"flexShrink","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"flexWrap":{"defaultValue":null,"description":"Sets the `flex-wrap` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/flex-wrap}","name":"flexWrap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontFamily`** property","name":"fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontSize`** property","name":"fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontStyle":{"defaultValue":null,"description":"Sets the `font-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/font-style}","name":"fontStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_fontWeight`** property","name":"fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gap":{"defaultValue":null,"description":"Sets the `gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gap`** property","name":"gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"grid":{"defaultValue":null,"description":"Sets the `grid` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid}","name":"grid","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridArea":{"defaultValue":null,"description":"Sets the `grid-area` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-area}","name":"gridArea","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoColumns`** property","name":"gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoFlow":{"defaultValue":null,"description":"Sets the `grid-auto-flow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow}","name":"gridAutoFlow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridAutoRows`** property","name":"gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumn":{"defaultValue":null,"description":"Sets the `grid-column` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column}","name":"gridColumn","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnEnd":{"defaultValue":null,"description":"Sets the `grid-column-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-end}","name":"gridColumnEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridColumnSpan`** property","name":"gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridColumnStart":{"defaultValue":null,"description":"Sets the `grid-column-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-column-start}","name":"gridColumnStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRow":{"defaultValue":null,"description":"Sets the `grid-row` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row}","name":"gridRow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowEnd":{"defaultValue":null,"description":"Sets the `grid-row-end` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-end}","name":"gridRowEnd","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridRowSpan`** property","name":"gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridRowStart":{"defaultValue":null,"description":"Sets the `grid-row-start` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-row-start}","name":"gridRowStart","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplate":{"defaultValue":null,"description":"Sets the `grid-template` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template}","name":"gridTemplate","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateAreas":{"defaultValue":null,"description":"Sets the `grid-template-areas` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/grid-template-areas}","name":"gridTemplateAreas","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateColumns`** property","name":"gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_gridTemplateRows`** property","name":"gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"height":{"defaultValue":null,"description":"Sets the `height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_height`** property","name":"height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyContent":{"defaultValue":null,"description":"Sets the `justify-content` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-content}","name":"justifyContent","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifyItems":{"defaultValue":null,"description":"Sets the `justify-items` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-items}","name":"justifyItems","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"justifySelf":{"defaultValue":null,"description":"Sets the `justify-self` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/justify-self}","name":"justifySelf","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"left":{"defaultValue":null,"description":"Sets the `left` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/left}","name":"left","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"letterSpacing":{"defaultValue":null,"description":"Sets the `letter-spacing` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/letter-spacing}","name":"letterSpacing","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_lineHeight`** property","name":"lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"margin":{"defaultValue":null,"description":"Sets the `margin` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_margin`** property","name":"margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginBottom`** property","name":"marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginLeft`** property","name":"marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginRight`** property","name":"marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginTop`** property","name":"marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginX":{"defaultValue":null,"description":"Sets the horizontal margin properties (`margin-left` and `margin-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginX`** property","name":"marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"marginY":{"defaultValue":null,"description":"Sets the vertical margin properties (`margin-top` and `margin-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_marginY`** property","name":"marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxHeight`** property","name":"maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_maxWidth`** property","name":"maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minHeight`** property","name":"minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_minWidth`** property","name":"minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectFit":{"defaultValue":null,"description":"Sets the `object-fit` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-fit}","name":"objectFit","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"objectPosition":{"defaultValue":null,"description":"Sets the `object-position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/object-position}","name":"objectPosition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"opacity":{"defaultValue":null,"description":"Sets the `opacity` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacity","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityActive":{"defaultValue":null,"description":"Sets the `opacity` property when active.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityFocus":{"defaultValue":null,"description":"Sets the `opacity` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"opacityHover":{"defaultValue":null,"description":"Sets the `opacity` property when hovered.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/opacity}","name":"opacityHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"order":{"defaultValue":null,"description":"Sets the `order` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/order}","name":"order","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"outline":{"defaultValue":null,"description":"Sets the `outline` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outline","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"outlineFocus":{"defaultValue":null,"description":"Sets the `outline` property when focused.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/outline}","name":"outlineFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"overflow":{"defaultValue":null,"description":"Sets the `overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow}","name":"overflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowX":{"defaultValue":null,"description":"Sets the `overflow-x` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-x}","name":"overflowX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"overflowY":{"defaultValue":null,"description":"Sets the `overflow-y` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/overflow-y}","name":"overflowY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"padding":{"defaultValue":null,"description":"Sets the `padding` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_padding`** property","name":"padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingBottom`** property","name":"paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingLeft`** property","name":"paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingRight`** property","name":"paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingTop`** property","name":"paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingX":{"defaultValue":null,"description":"Sets the horizontal padding properties (`padding-left` and `padding-right`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingX`** property","name":"paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"paddingY":{"defaultValue":null,"description":"Sets the vertical padding properties (`padding-top` and `padding-bottom`).\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_paddingY`** property","name":"paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"pointerEvents":{"defaultValue":null,"description":"Sets the `pointer-events` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/pointer-events}","name":"pointerEvents","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"position":{"defaultValue":null,"description":"Sets the `position` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/position}","name":"position","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"resize":{"defaultValue":null,"description":"Sets the `resize` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/resize}","name":"resize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"right":{"defaultValue":null,"description":"Sets the `right` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/right}","name":"right","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_rowGap`** property","name":"rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_stroke`** property","name":"stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textAlign":{"defaultValue":null,"description":"Sets the `text-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-align}","name":"textAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textDecoration":{"defaultValue":null,"description":"Sets the `text-decoration` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-decoration}","name":"textDecoration","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"textOverflow":{"defaultValue":null,"description":"Sets the `text-overflow` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-overflow}","name":"textOverflow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"textTransform":{"defaultValue":null,"description":"Sets the `text-transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/text-transform}","name":"textTransform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"top":{"defaultValue":null,"description":"Sets the `top` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/top}","name":"top","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transform":{"defaultValue":null,"description":"Sets the `transform` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform}","name":"transform","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transformOrigin":{"defaultValue":null,"description":"Sets the `transform-origin` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-origin}","name":"transformOrigin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"transformStyle":{"defaultValue":null,"description":"Sets the `transform-style` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transform-style}","name":"transformStyle","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"transition":{"defaultValue":null,"description":"Sets the `transition` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/transition}","name":"transition","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"UNSAFE_backgroundColor":{"defaultValue":null,"description":"Sets the `background-color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColor`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColor","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorActive":{"defaultValue":null,"description":"Sets the `background-color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorFocus":{"defaultValue":null,"description":"Sets the `background-color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_backgroundColorHover":{"defaultValue":null,"description":"Sets the `background-color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`backgroundColorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_backgroundColorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_border":{"defaultValue":null,"description":"Sets the `border` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`border`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_border","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderActive":{"defaultValue":null,"description":"Sets the `border` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottom":{"defaultValue":null,"description":"Sets the `border-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomActive":{"defaultValue":null,"description":"Sets the `border-bottom` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomFocus":{"defaultValue":null,"description":"Sets the `border-bottom` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomHover":{"defaultValue":null,"description":"Sets the `border-bottom` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomLeftRadius":{"defaultValue":null,"description":"Sets the `border-bottom-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderBottomRightRadius":{"defaultValue":null,"description":"Sets the `border-bottom-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderBottomRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderBottomRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderFocus":{"defaultValue":null,"description":"Sets the `border` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderHover":{"defaultValue":null,"description":"Sets the `border` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeft":{"defaultValue":null,"description":"Sets the `border-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftActive":{"defaultValue":null,"description":"Sets the `border-left` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftFocus":{"defaultValue":null,"description":"Sets the `border-left` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderLeftHover":{"defaultValue":null,"description":"Sets the `border-left` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderLeftHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderLeftHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRadius":{"defaultValue":null,"description":"Sets the `border-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRight":{"defaultValue":null,"description":"Sets the `border-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightActive":{"defaultValue":null,"description":"Sets the `border-right` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightFocus":{"defaultValue":null,"description":"Sets the `border-right` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderRightHover":{"defaultValue":null,"description":"Sets the `border-right` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderRightHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderRightHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTop":{"defaultValue":null,"description":"Sets the `border-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopActive":{"defaultValue":null,"description":"Sets the `border-top` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopFocus":{"defaultValue":null,"description":"Sets the `border-top` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopHover":{"defaultValue":null,"description":"Sets the `border-top` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopLeftRadius":{"defaultValue":null,"description":"Sets the `border-top-left-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopLeftRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopLeftRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_borderTopRightRadius":{"defaultValue":null,"description":"Sets the `border-top-right-radius` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`borderTopRightRadius`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_borderTopRightRadius","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadow":{"defaultValue":null,"description":"Sets the `box-shadow` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadow`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadow","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowActive":{"defaultValue":null,"description":"Sets the `box-shadow` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowFocus":{"defaultValue":null,"description":"Sets the `box-shadow` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_boxShadowHover":{"defaultValue":null,"description":"Sets the `box-shadow` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`boxShadowHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_boxShadowHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_color":{"defaultValue":null,"description":"Sets the `color` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`color`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_color","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorActive":{"defaultValue":null,"description":"Sets the `color` property when active.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorActive`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorActive","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorFocus":{"defaultValue":null,"description":"Sets the `color` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_colorHover":{"defaultValue":null,"description":"Sets the `color` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`colorHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_colorHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_columnGap":{"defaultValue":null,"description":"Sets the `column-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`columnGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_columnGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fill":{"defaultValue":null,"description":"Sets the `fill` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fill`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fill","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillFocus":{"defaultValue":null,"description":"Sets the `fill` property when focused.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillFocus`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillFocus","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fillHover":{"defaultValue":null,"description":"Sets the `fill` property when hovered.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fillHover`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fillHover","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontFamily":{"defaultValue":null,"description":"Sets the `font-family` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontFamily`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontFamily","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontSize":{"defaultValue":null,"description":"Sets the `font-size` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontSize`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontSize","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_fontWeight":{"defaultValue":null,"description":"Sets the `font-weight` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`fontWeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_fontWeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gap":{"defaultValue":null,"description":"Sets the `gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoColumns":{"defaultValue":null,"description":"Sets the `grid-auto-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridAutoRows":{"defaultValue":null,"description":"Sets the `grid-auto-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridAutoRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridAutoRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridColumnSpan":{"defaultValue":null,"description":"Sets the `grid-column-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridColumnSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridColumnSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridRowSpan":{"defaultValue":null,"description":"Sets the `grid-row-span` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridRowSpan`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridRowSpan","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateColumns":{"defaultValue":null,"description":"Sets the `grid-template-columns` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateColumns`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateColumns","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_gridTemplateRows":{"defaultValue":null,"description":"Sets the `grid-template-rows` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`gridTemplateRows`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_gridTemplateRows","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_height":{"defaultValue":null,"description":"Sets the `height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`height`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_height","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_lineHeight":{"defaultValue":null,"description":"Sets the `line-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`lineHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_lineHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_margin":{"defaultValue":null,"description":"Sets the `margin` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`margin`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_margin","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginBottom":{"defaultValue":null,"description":"Sets the `margin-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginLeft":{"defaultValue":null,"description":"Sets the `margin-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginRight":{"defaultValue":null,"description":"Sets the `margin-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginTop":{"defaultValue":null,"description":"Sets the `margin-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginX":{"defaultValue":null,"description":"Sets the horizontal margin (`margin-left` and `margin-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_marginY":{"defaultValue":null,"description":"Sets the vertical margin (`margin-top` and `margin-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`marginY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_marginY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxHeight":{"defaultValue":null,"description":"Sets the `max-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_maxWidth":{"defaultValue":null,"description":"Sets the `max-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`maxWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_maxWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minHeight":{"defaultValue":null,"description":"Sets the `min-height` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minHeight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minHeight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_minWidth":{"defaultValue":null,"description":"Sets the `min-width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`minWidth`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_minWidth","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_padding":{"defaultValue":null,"description":"Sets the `padding` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`padding`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_padding","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingBottom":{"defaultValue":null,"description":"Sets the `padding-bottom` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingBottom`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingBottom","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingLeft":{"defaultValue":null,"description":"Sets the `padding-left` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingLeft`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingLeft","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingRight":{"defaultValue":null,"description":"Sets the `padding-right` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingRight`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingRight","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingTop":{"defaultValue":null,"description":"Sets the `padding-top` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingTop`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingTop","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingX":{"defaultValue":null,"description":"Sets the horizontal padding (`padding-left` and `padding-right`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingX`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingX","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_paddingY":{"defaultValue":null,"description":"Sets the vertical padding (`padding-top` and `padding-bottom`) property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`paddingY`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_paddingY","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_rowGap":{"defaultValue":null,"description":"Sets the `row-gap` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`rowGap`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_rowGap","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_stroke":{"defaultValue":null,"description":"Sets the `stroke` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`stroke`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_stroke","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"UNSAFE_width":{"defaultValue":null,"description":"Sets the `width` property.\n\nIf you want to use a **token value** from the **SCALE**, use the **`width`** property instead.\n\nThis property is marked as **UNSAFE** because you're opting out of the intended values of the design system.","name":"UNSAFE_width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"verticalAlign":{"defaultValue":null,"description":"Sets the `vertical-align` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/vertical-align}","name":"verticalAlign","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp>"}},"visibility":{"defaultValue":null,"description":"Sets the `visibility` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/visibility}","name":"visibility","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"whiteSpace":{"defaultValue":null,"description":"Sets the `white-space` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/white-space}","name":"whiteSpace","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"width":{"defaultValue":null,"description":"Sets the `width` property.\nThis property only accept **token values** from the **SCALE**. To specify any other values, use the **`UNSAFE_width`** property","name":"width","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"willChange":{"defaultValue":null,"description":"Sets the `will-change` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/will-change}","name":"willChange","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"wordBreak":{"defaultValue":null,"description":"Sets the `word-break` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/word-break}","name":"wordBreak","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"zIndex":{"defaultValue":null,"description":"Sets the `z-index` property.\n@see {@link https://developer.mozilla.org/docs/Web/CSS/z-index}","name":"zIndex","parent":{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"},"declarations":[{"fileName":"wl-hopper/packages/styled-system/dist/styledSystemProps.d.ts","name":"StyledSystemProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/TextContext.json b/apps/docs/datas/components/TextContext.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/TextContext.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/composeClassnameRenderProps.json b/apps/docs/datas/components/composeClassnameRenderProps.json deleted file mode 100644 index 0560b9e77..000000000 --- a/apps/docs/datas/components/composeClassnameRenderProps.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/composeClassnameRenderProps.ts","description":"Composes classnames for render props in React components using cslx.\nAllows combining a base classname, render prop function, and additional classes.","displayName":"composeClassnameRenderProps","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/cssModule.json b/apps/docs/datas/components/cssModule.json deleted file mode 100644 index 7eeb7e837..000000000 --- a/apps/docs/datas/components/cssModule.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{"param":"cssModules - The CSS modules object to use for classname lookups.","example":"const result = cssModule(styles, 'hop-button', 'lg', 'primary');\n// result = \"hop-button--lg hop-button--primary\""},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/cssModule.ts","description":"Generates CSS module classnames for a given component with modifiers.\nUtilizes the provided CSS modules object and component name to create classnames.","displayName":"cssModule","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/isTextOnlyChildren.json b/apps/docs/datas/components/isTextOnlyChildren.json deleted file mode 100644 index c6ebb80ee..000000000 --- a/apps/docs/datas/components/isTextOnlyChildren.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/isTextOnlyChildren.ts","description":"Determines whether the provided React children consist only of text content.\nThis function unwraps children wrapped in React Fragments.","displayName":"isTextOnlyChildren","methods":[],"props":{"toString":{"defaultValue":{},"description":"Returns a string representation of a string.\nReturns a string representation of an object.\n@param radix Specifies a radix for converting numeric values to strings. This value is only used for numbers.","name":"toString","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"}],"required":false,"type":{"name":"(() => string) | ((radix?: number) => string) | (() => string)"}},"charAt":{"defaultValue":null,"description":"Returns the character at the specified index.\n@param pos The zero-based index of the desired character.","name":"charAt","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(pos: number) => string"}},"charCodeAt":{"defaultValue":null,"description":"Returns the Unicode value of the character at the specified location.\n@param index The zero-based index of the desired character. If there is no character at the specified index, NaN is returned.","name":"charCodeAt","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(index: number) => number"}},"concat":{"defaultValue":null,"description":"Returns a string that contains the concatenation of two or more strings.\n@param strings The strings to append to the end of the string.","name":"concat","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(...strings: string[]) => string"}},"indexOf":{"defaultValue":null,"description":"Returns the position of the first occurrence of a substring.\n@param searchString The substring to search for in the string\n@param position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.","name":"indexOf","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => number"}},"lastIndexOf":{"defaultValue":null,"description":"Returns the last occurrence of a substring in the string.\n@param searchString The substring to search for.\n@param position The index at which to begin searching. If omitted, the search begins at the end of the string.","name":"lastIndexOf","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => number"}},"localeCompare":{"defaultValue":null,"description":"Determines whether two strings are equivalent in the current locale.\nDetermines whether two strings are equivalent in the current or specified locale.\n@param that String to compare to target string\n@param that String to compare to target string\n@param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n@param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.\n@param that String to compare to target string\n@param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n@param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.","name":"localeCompare","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (that: string): number; (that: string, locales?: string | string[], options?: CollatorOptions): number; (that: string, locales?: LocalesArgument, options?: CollatorOptions): number; }"}},"match":{"defaultValue":null,"description":"Matches a string with a regular expression, and returns an array containing the results of that search.\nMatches a string or an object that supports being matched against, and returns an array\ncontaining the results of that search, or null if no matches are found.\n@param regexp A variable name or string literal containing the regular expression pattern and flags.\n@param matcher An object that supports being matched against.","name":"match","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (regexp: string | RegExp): RegExpMatchArray; (matcher: { [Symbol.match](string: string): RegExpMatchArray; }): RegExpMatchArray; }"}},"replace":{"defaultValue":null,"description":"Replaces text in a string, using a regular expression or search string.\nPasses a string and {@linkcode replaceValue} to the `[Symbol.replace]` method on {@linkcode searchValue}. This method is expected to implement its own replacement algorithm.\nReplaces text in a string, using an object that supports replacement within a string.\n@param searchValue A string or regular expression to search for.\n@param replaceValue A string containing the text to replace. When the {@linkcode searchValue } is a `RegExp`, all matches are replaced if the `g` flag is set (or only those matches at the beginning, if the `y` flag is also present). Otherwise, only the first match of {@linkcode searchValue } is replaced.\n@param searchValue A string to search for.\n@param replacer A function that returns the replacement text.\n@param searchValue An object that supports searching for and replacing matches within a string.\n@param replaceValue The replacement text.\n@param searchValue A object can search for and replace matches within a string.\n@param replacer A function that returns the replacement text.","name":"replace","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (searchValue: string | RegExp, replaceValue: string): string; (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string; (searchValue: { ...; }, replaceValue: string): string; (searchValue: { ...; }, replacer: (substring: string, ...args: any[]) => string): string; }"}},"search":{"defaultValue":null,"description":"Finds the first substring match in a regular expression search.\n@param regexp The regular expression pattern and applicable flags.\n@param searcher An object which supports searching within a string.","name":"search","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (regexp: string | RegExp): number; (searcher: { [Symbol.search](string: string): number; }): number; }"}},"slice":{"defaultValue":null,"description":"Returns a section of a string.\n@param start The index to the beginning of the specified portion of stringObj.\n@param end The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\nIf this value is not specified, the substring continues to the end of stringObj.","name":"slice","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(start?: number, end?: number) => string"}},"split":{"defaultValue":null,"description":"Split a string into substrings using the specified separator and return them as an array.\n@param separator A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.\n@param limit A value used to limit the number of elements returned in the array.\n@param splitter An object that can split a string.\n@param limit A value used to limit the number of elements returned in the array.","name":"split","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","name":"String"}],"required":true,"type":{"name":"{ (separator: string | RegExp, limit?: number): string[]; (splitter: { [Symbol.split](string: string, limit?: number): string[]; }, limit?: number): string[]; }"}},"substring":{"defaultValue":null,"description":"Returns the substring at the specified location within a String object.\n@param start The zero-based index number indicating the beginning of the substring.\n@param end Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\nIf end is omitted, the characters from start through the end of the original string are returned.","name":"substring","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(start: number, end?: number) => string"}},"toLowerCase":{"defaultValue":null,"description":"Converts all the alphabetic characters in a string to lowercase.","name":"toLowerCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"toLocaleLowerCase":{"defaultValue":null,"description":"Converts all alphabetic characters to lowercase, taking into account the host environment's current locale.","name":"toLocaleLowerCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (locales?: string | string[]): string; (locales?: LocalesArgument): string; }"}},"toUpperCase":{"defaultValue":null,"description":"Converts all the alphabetic characters in a string to uppercase.","name":"toUpperCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"toLocaleUpperCase":{"defaultValue":null,"description":"Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale.","name":"toLocaleUpperCase","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (locales?: string | string[]): string; (locales?: LocalesArgument): string; }"}},"trim":{"defaultValue":null,"description":"Removes the leading and trailing white space and line terminator characters from a string.","name":"trim","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"length":{"defaultValue":null,"description":"Returns the length of a String object.","name":"length","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"number"}},"substr":{"defaultValue":null,"description":"Gets a substring beginning at the specified location and having the specified length.\n@deprecated A legacy feature for browser compatibility\n@param from The starting position of the desired substring. The index of the first character in the string is zero.\n@param length The number of characters to include in the returned substring.","name":"substr","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"}],"required":true,"type":{"name":"(from: number, length?: number) => string"}},"valueOf":{"defaultValue":{},"description":"Returns the primitive value of the specified object.","name":"valueOf","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Boolean"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"}],"required":false,"type":{"name":"(() => string) | (() => number) | (() => boolean) | (() => Object)"}},"codePointAt":{"defaultValue":null,"description":"Returns a nonnegative integer Number less than 1114112 (0x110000) that is the code point\nvalue of the UTF-16 encoded code point starting at the string element at position pos in\nthe String resulting from converting this object to a String.\nIf there is no element at that position, the result is undefined.\nIf a valid UTF-16 surrogate pair does not begin at pos, the result is the code unit at pos.","name":"codePointAt","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(pos: number) => number"}},"includes":{"defaultValue":null,"description":"Returns true if searchString appears as a substring of the result of converting this\nobject to a String, at one or more positions that are\ngreater than or equal to position; otherwise, returns false.\n@param searchString search string\n@param position If position is undefined, 0 is assumed, so as to search all of the String.","name":"includes","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => boolean"}},"endsWith":{"defaultValue":null,"description":"Returns true if the sequence of elements of searchString converted to a String is the\nsame as the corresponding elements of this object (converted to a String) starting at\nendPosition – length(this). Otherwise returns false.","name":"endsWith","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, endPosition?: number) => boolean"}},"normalize":{"defaultValue":null,"description":"Returns the String value result of normalizing the string into the normalization form\nnamed by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.\n@param form Applicable values: \"NFC\", \"NFD\", \"NFKC\", or \"NFKD\", If not specified default\nis \"NFC\"\n@param form Applicable values: \"NFC\", \"NFD\", \"NFKC\", or \"NFKD\", If not specified default\nis \"NFC\"","name":"normalize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"{ (form: \"NFC\" | \"NFD\" | \"NFKC\" | \"NFKD\"): string; (form?: string): string; }"}},"repeat":{"defaultValue":null,"description":"Returns a String value that is made from count copies appended together. If count is 0,\nthe empty string is returned.\n@param count number of copies to append","name":"repeat","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(count: number) => string"}},"startsWith":{"defaultValue":null,"description":"Returns true if the sequence of elements of searchString converted to a String is the\nsame as the corresponding elements of this object (converted to a String) starting at\nposition. Otherwise returns false.","name":"startsWith","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(searchString: string, position?: number) => boolean"}},"anchor":{"defaultValue":null,"description":"Returns an `` HTML anchor element and sets the name attribute to the text value\n@deprecated A legacy feature for browser compatibility\n@param name","name":"anchor","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(name: string) => string"}},"big":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"big","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"blink":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"blink","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"bold":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"bold","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"fixed":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"fixed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"fontcolor":{"defaultValue":null,"description":"Returns a `` HTML element and sets the color attribute value\n@deprecated A legacy feature for browser compatibility","name":"fontcolor","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(color: string) => string"}},"fontsize":{"defaultValue":null,"description":"Returns a `` HTML element and sets the size attribute value\n@deprecated A legacy feature for browser compatibility\n@deprecated A legacy feature for browser compatibility","name":"fontsize","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"{ (size: number): string; (size: string): string; }"}},"italics":{"defaultValue":null,"description":"Returns an `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"italics","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"link":{"defaultValue":null,"description":"Returns an `` HTML element and sets the href attribute value\n@deprecated A legacy feature for browser compatibility","name":"link","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"(url: string) => string"}},"small":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"small","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"strike":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"strike","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"sub":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"sub","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"sup":{"defaultValue":null,"description":"Returns a `` HTML element\n@deprecated A legacy feature for browser compatibility","name":"sup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"padStart":{"defaultValue":null,"description":"Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.\nThe padding is applied from the start (left) of the current string.\n@param maxLength The length of the resulting string once the current string has been padded.\nIf this parameter is smaller than the current string's length, the current string will be returned as it is.\n@param fillString The string to pad the current string with.\nIf this string is too long, it will be truncated and the left-most part will be applied.\nThe default value for this parameter is \" \" (U+0020).","name":"padStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"}],"required":true,"type":{"name":"(maxLength: number, fillString?: string) => string"}},"padEnd":{"defaultValue":null,"description":"Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length.\nThe padding is applied from the end (right) of the current string.\n@param maxLength The length of the resulting string once the current string has been padded.\nIf this parameter is smaller than the current string's length, the current string will be returned as it is.\n@param fillString The string to pad the current string with.\nIf this string is too long, it will be truncated and the left-most part will be applied.\nThe default value for this parameter is \" \" (U+0020).","name":"padEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","name":"String"}],"required":true,"type":{"name":"(maxLength: number, fillString?: string) => string"}},"trimEnd":{"defaultValue":null,"description":"Removes the trailing white space and line terminator characters from a string.","name":"trimEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"trimStart":{"defaultValue":null,"description":"Removes the leading white space and line terminator characters from a string.","name":"trimStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"trimLeft":{"defaultValue":null,"description":"Removes the leading white space and line terminator characters from a string.\n@deprecated A legacy feature for browser compatibility. Use `trimStart` instead","name":"trimLeft","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"trimRight":{"defaultValue":null,"description":"Removes the trailing white space and line terminator characters from a string.\n@deprecated A legacy feature for browser compatibility. Use `trimEnd` instead","name":"trimRight","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","name":"String"}],"required":true,"type":{"name":"() => string"}},"matchAll":{"defaultValue":null,"description":"Matches a string with a regular expression, and returns an iterable of matches\ncontaining the results of that search.\n@param regexp A variable name or string literal containing the regular expression pattern and flags.","name":"matchAll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","name":"String"}],"required":true,"type":{"name":"(regexp: RegExp) => IterableIterator"}},"replaceAll":{"defaultValue":null,"description":"Replace all instances of a substring in a string, using a regular expression or search string.\n@param searchValue A string to search for.\n@param replaceValue A string containing the text to replace for every successful match of searchValue in this string.\n@param searchValue A string to search for.\n@param replacer A function that returns the replacement text.","name":"replaceAll","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","name":"String"}],"required":true,"type":{"name":"{ (searchValue: string | RegExp, replaceValue: string): string; (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string; }"}},"at":{"defaultValue":null,"description":"Returns a new String consisting of the single UTF-16 code unit located at the specified index.\n@param index The zero-based index of the desired code unit. A negative index will count back from the last item.","name":"at","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.string.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.string.d.ts","name":"String"}],"required":true,"type":{"name":"(index: number) => string"}},"__@iterator@82146":{"defaultValue":null,"description":"Iterator","name":"__@iterator@82146","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","name":"String"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","name":"String"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","name":"Iterable"}],"required":true,"type":{"name":"(() => IterableIterator) | (() => Iterator)"}},"toFixed":{"defaultValue":null,"description":"Returns a string representing a number in fixed-point notation.\n@param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.","name":"toFixed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"}],"required":true,"type":{"name":"(fractionDigits?: number) => string"}},"toExponential":{"defaultValue":null,"description":"Returns a string containing a number represented in exponential notation.\n@param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.","name":"toExponential","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"}],"required":true,"type":{"name":"(fractionDigits?: number) => string"}},"toPrecision":{"defaultValue":null,"description":"Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.\n@param precision Number of significant digits. Must be in the range 1 - 21, inclusive.","name":"toPrecision","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"}],"required":true,"type":{"name":"(precision?: number) => string"}},"toLocaleString":{"defaultValue":{},"description":"Returns a date converted to a string using the current locale.\nConverts a number to a string by using the current or specified locale.\n@param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n@param options An object that contains one or more properties that specify comparison options.\n@param locales A locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n@param options An object that contains one or more properties that specify comparison options.","name":"toLocaleString","parent":{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Object"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","name":"Number"},{"fileName":"wl-hopper/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.number.d.ts","name":"Number"}],"required":false,"type":{"name":"(() => string) | { (locales?: string | string[], options?: NumberFormatOptions): string; (locales?: LocalesArgument, options?: NumberFormatOptions): string; }"}},"type":{"defaultValue":null,"description":"","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"}],"required":true,"type":{"name":"string | JSXElementConstructor"}},"props":{"defaultValue":null,"description":"","name":"props","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"}],"required":true,"type":{"name":"any"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"ReactElement"}],"required":true,"type":{"name":"string"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/sizeAdapter.json b/apps/docs/datas/components/sizeAdapter.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/sizeAdapter.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/types.json b/apps/docs/datas/components/types.json deleted file mode 100644 index 0637a088a..000000000 --- a/apps/docs/datas/components/types.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/apps/docs/datas/components/useLocalizedString.json b/apps/docs/datas/components/useLocalizedString.json deleted file mode 100644 index 7fbf7f81c..000000000 --- a/apps/docs/datas/components/useLocalizedString.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{"internationalized":"/string-formatter\nis running in our build to support that."},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/intl/src/useLocalizedString.tsx","description":"This hook is used to get the localized string formatter.\nIt uses the resources from the component package.\n\nThis does not support complex string formatting at the moment. We would need to make sur","displayName":"useLocalizedString","methods":[],"props":{}}] \ No newline at end of file diff --git a/apps/docs/datas/components/useRenderProps.json b/apps/docs/datas/components/useRenderProps.json deleted file mode 100644 index 5431fc75f..000000000 --- a/apps/docs/datas/components/useRenderProps.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/useRenderProps.ts","description":"Taken from https://github.com/adobe/react-spectrum/blob/main/packages/react-aria-components/src/utils.tsx","displayName":"useRenderProps","methods":[],"props":{"values":{"defaultValue":null,"description":"","name":"values","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"}],"required":true,"type":{"name":"T"}},"defaultChildren":{"defaultValue":null,"description":"","name":"defaultChildren","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"}],"required":false,"type":{"name":"ReactNode"}},"defaultClassName":{"defaultValue":null,"description":"","name":"defaultClassName","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderPropsHookOptions"}],"required":false,"type":{"name":"string"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: T) => ReactNode)"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: T) => string)"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/utils/src/types.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: T) => CSSProperties)"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}}}}] \ No newline at end of file diff --git a/apps/docs/datas/components/useSlot.json b/apps/docs/datas/components/useSlot.json deleted file mode 100644 index bf382fab9..000000000 --- a/apps/docs/datas/components/useSlot.json +++ /dev/null @@ -1 +0,0 @@ -[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/utils/src/useSlot.ts","description":"Taken from https://github.com/adobe/react-spectrum/blob/main/packages/react-aria-components/src/utils.tsx","displayName":"useSlot","methods":[],"props":{}}] \ No newline at end of file From c6d3d4a756391be1c372594adb34228b67b5fbb7 Mon Sep 17 00:00:00 2001 From: Franck Gaudin Date: Wed, 24 Apr 2024 14:22:35 -0400 Subject: [PATCH 32/33] Push data to fix build error --- .gitignore | 3 --- apps/docs/datas/components/Button.json | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) create mode 100644 apps/docs/datas/components/Button.json diff --git a/.gitignore b/.gitignore index 1303b332c..6ac8e96da 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,3 @@ build-storybook.log # contains our project's chromatic ID chromatic.config.json - -# Datas are temporarily excluded from git while the page is being developed -/apps/docs/datas/components/ diff --git a/apps/docs/datas/components/Button.json b/apps/docs/datas/components/Button.json new file mode 100644 index 000000000..9b7263605 --- /dev/null +++ b/apps/docs/datas/components/Button.json @@ -0,0 +1 @@ +[{"tags":{},"filePath":"/Users/franck.gaudin/Devel/DS/wl-hopper/packages/components/src/buttons/src/Button.tsx","description":"Buttons are used to initialize an action. Button labels express what action will occur when the user interacts with it.\n\n[View Documentation](TODO)","displayName":"Button","methods":[],"props":{"variant":{"defaultValue":{"value":"\"primary\""},"description":"The visual style of the button.\n*","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\" | \"danger\" | \"upsell\" | \"ghost-primary\" | \"ghost-secondary\" | \"ghost-danger\""}},"size":{"defaultValue":{"value":"\"md\""},"description":"A button can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"fluid":{"defaultValue":null,"description":"Whether or not the button takes up the width of its container.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"isLoading":{"defaultValue":null,"description":"","name":"isLoading","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"href":{"defaultValue":null,"description":"A URL to link to. Setting this makes the component render an `a` tag instead of a `button`","name":"href","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link.","name":"target","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"form":{"defaultValue":null,"description":"The element to associate the button with.\nThe value of this attribute must be the id of a in the same document.","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: ButtonRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: ButtonRenderProps) => ReactNode)"}},"isDisabled":{"defaultValue":null,"description":"Whether the button is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\""}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"string"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"type":{"defaultValue":{"value":"'button'"},"description":"The behavior of the button when used in an HTML form.","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"\"button\" | \"submit\" | \"reset\""}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"formAction":{"defaultValue":null,"description":"The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.","name":"formAction","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formEncType":{"defaultValue":null,"description":"Indicates how to encode the form data that is submitted.","name":"formEncType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formMethod":{"defaultValue":null,"description":"Indicates the HTTP method used to submit the form.","name":"formMethod","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formNoValidate":{"defaultValue":null,"description":"Indicates that the form is not to be validated when it is submitted.","name":"formNoValidate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"formTarget":{"defaultValue":null,"description":"Overrides the target attribute of the button's form owner.","name":"formTarget","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"value":{"defaultValue":null,"description":"The value associated with the button's name when it's submitted with the form data.","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: ButtonRenderProps) => string)"}},"name":{"defaultValue":null,"description":"Submitted as a pair with the button's value as part of the form data.","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}},"groups":{"default":{"variant":{"defaultValue":{"value":"\"primary\""},"description":"The visual style of the button.\n*","name":"variant","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"\"primary\" | \"secondary\" | \"danger\" | \"upsell\" | \"ghost-primary\" | \"ghost-secondary\" | \"ghost-danger\""}},"size":{"defaultValue":{"value":"\"md\""},"description":"A button can vary in size.","name":"size","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp<\"sm\" | \"md\">"}},"fluid":{"defaultValue":null,"description":"Whether or not the button takes up the width of its container.","name":"fluid","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"ResponsiveProp"}},"isLoading":{"defaultValue":null,"description":"","name":"isLoading","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"href":{"defaultValue":null,"description":"A URL to link to. Setting this makes the component render an `a` tag instead of a `button`","name":"href","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"target":{"defaultValue":null,"description":"The target window for the link.","name":"target","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"rel":{"defaultValue":null,"description":"The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).","name":"rel","parent":{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/packages/components/src/buttons/src/Button.tsx","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"form":{"defaultValue":null,"description":"The element to associate the button with.\nThe value of this attribute must be the id of a in the same document.","name":"form","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"slot":{"defaultValue":null,"description":"A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.","name":"slot","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"SlotProps"}],"required":false,"type":{"name":"string"}},"style":{"defaultValue":null,"description":"The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.","name":"style","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"CSSProperties | ((values: ButtonRenderProps) => CSSProperties)"}},"children":{"defaultValue":null,"description":"The children of the component. A function may be provided to alter the children based on component state.","name":"children","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"RenderProps"}],"required":false,"type":{"name":"ReactNode | ((values: ButtonRenderProps) => ReactNode)"}},"isDisabled":{"defaultValue":null,"description":"Whether the button is disabled.","name":"isDisabled","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"autoFocus":{"defaultValue":null,"description":"Whether the element should receive focus on render.","name":"autoFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusableProps"}],"required":false,"type":{"name":"boolean"}},"excludeFromTabOrder":{"defaultValue":null,"description":"Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.","name":"excludeFromTabOrder","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"FocusableDOMProps"}],"required":false,"type":{"name":"boolean"}},"id":{"defaultValue":null,"description":"The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).","name":"id","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"DOMProps"}],"required":false,"type":{"name":"string"}},"formAction":{"defaultValue":null,"description":"The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.","name":"formAction","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formEncType":{"defaultValue":null,"description":"Indicates how to encode the form data that is submitted.","name":"formEncType","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formMethod":{"defaultValue":null,"description":"Indicates the HTTP method used to submit the form.","name":"formMethod","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"formNoValidate":{"defaultValue":null,"description":"Indicates that the form is not to be validated when it is submitted.","name":"formNoValidate","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"boolean"}},"formTarget":{"defaultValue":null,"description":"Overrides the target attribute of the button's form owner.","name":"formTarget","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"value":{"defaultValue":null,"description":"The value associated with the button's name when it's submitted with the form data.","name":"value","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"className":{"defaultValue":null,"description":"The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.","name":"className","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"StyleRenderProps"}],"required":false,"type":{"name":"string | ((values: ButtonRenderProps) => string)"}},"name":{"defaultValue":null,"description":"Submitted as a pair with the button's value as part of the form data.","name":"name","parent":{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts","name":"ButtonProps"}],"required":false,"type":{"name":"string"}},"ref":{"defaultValue":null,"description":"Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}","name":"ref","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"RefAttributes"}],"required":false,"type":{"name":"LegacyRef"}},"key":{"defaultValue":null,"description":"","name":"key","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","name":"Attributes"}],"required":false,"type":{"name":"Key"}}},"events":{"onPress":{"defaultValue":null,"description":"Handler that is called when the press is released over the target.","name":"onPress","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressStart":{"defaultValue":null,"description":"Handler that is called when a press interaction starts.","name":"onPressStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressEnd":{"defaultValue":null,"description":"Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.","name":"onPressEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onPressChange":{"defaultValue":null,"description":"Handler that is called when the press state changes.","name":"onPressChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(isPressed: boolean) => void"}},"onPressUp":{"defaultValue":null,"description":"Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.","name":"onPressUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"PressEvents"}],"required":false,"type":{"name":"(e: PressEvent) => void"}},"onFocus":{"defaultValue":null,"description":"Handler that is called when the element receives focus.","name":"onFocus","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onBlur":{"defaultValue":null,"description":"Handler that is called when the element loses focus.","name":"onBlur","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(e: FocusEvent) => void"}},"onFocusChange":{"defaultValue":null,"description":"Handler that is called when the element's focus status changes.","name":"onFocusChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"FocusEvents"}],"required":false,"type":{"name":"(isFocused: boolean) => void"}},"onKeyDown":{"defaultValue":null,"description":"Handler that is called when a key is pressed.","name":"onKeyDown","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onKeyUp":{"defaultValue":null,"description":"Handler that is called when a key is released.","name":"onKeyUp","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"KeyboardEvents"}],"required":false,"type":{"name":"(e: KeyboardEvent) => void"}},"onHoverStart":{"defaultValue":null,"description":"Handler that is called when a hover interaction starts.","name":"onHoverStart","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverEnd":{"defaultValue":null,"description":"Handler that is called when a hover interaction ends.","name":"onHoverEnd","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(e: HoverEvent) => void"}},"onHoverChange":{"defaultValue":null,"description":"Handler that is called when the hover state changes.","name":"onHoverChange","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts","name":"HoverEvents"}],"required":false,"type":{"name":"(isHovering: boolean) => void"}}},"a11y":{"aria-expanded":{"defaultValue":null,"description":"Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.","name":"aria-expanded","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\""}},"aria-haspopup":{"defaultValue":null,"description":"Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.","name":"aria-haspopup","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"dialog\" | \"menu\" | \"grid\" | \"true\" | \"false\" | \"listbox\" | \"tree\""}},"aria-controls":{"defaultValue":null,"description":"Identifies the element (or elements) whose contents or presence are controlled by the current element.","name":"aria-controls","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"string"}},"aria-pressed":{"defaultValue":null,"description":"Indicates the current \"pressed\" state of toggle buttons.","name":"aria-pressed","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"boolean | \"true\" | \"false\" | \"mixed\""}},"type":{"defaultValue":{"value":"'button'"},"description":"The behavior of the button when used in an HTML form.","name":"type","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+button@3.9.2_react@18.2.0/node_modules/@react-types/button/src/index.d.ts","name":"AriaBaseButtonProps"}],"required":false,"type":{"name":"\"button\" | \"submit\" | \"reset\""}},"aria-label":{"defaultValue":null,"description":"Defines a string value that labels the current element.","name":"aria-label","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-labelledby":{"defaultValue":null,"description":"Identifies the element (or elements) that labels the current element.","name":"aria-labelledby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-describedby":{"defaultValue":null,"description":"Identifies the element (or elements) that describes the object.","name":"aria-describedby","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}},"aria-details":{"defaultValue":null,"description":"Identifies the element (or elements) that provide a detailed, extended description for the object.","name":"aria-details","parent":{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"},"declarations":[{"fileName":"wl-hopper/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts","name":"AriaLabelingProps"}],"required":false,"type":{"name":"string"}}}}}] \ No newline at end of file From c6ae3752009cfa07074ff1c55680c1930a396b99 Mon Sep 17 00:00:00 2001 From: Franck Gaudin Date: Wed, 24 Apr 2024 15:18:29 -0400 Subject: [PATCH 33/33] Typo fix --- apps/docs/components/collapsible/Collapsible.stories.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/components/collapsible/Collapsible.stories.tsx b/apps/docs/components/collapsible/Collapsible.stories.tsx index f4a21b576..5f3d09385 100644 --- a/apps/docs/components/collapsible/Collapsible.stories.tsx +++ b/apps/docs/components/collapsible/Collapsible.stories.tsx @@ -14,6 +14,6 @@ type Story = StoryObj; export const Default: Story = { args: { title: "Label", - children: "conent of the collapsible" + children: "Conent of the collapsible" } };